#include<iostream>#include<vector>#include<functional>#include<string>using namespace std; class TestThis {public: TestThis(TestThis &test){cout << "TestThis&" << endl;flag="TestThis&";} TestThis(TestThis &&test){cout << "TestThis&&" << endl;flag="TestThis&&";} TestThis(){cout << "TestThis" << endl;flag="TestThis()";} TestThis(int i):in(i){cout << "TestThis(int)" << i << endl;flag="TestThis(int)";} ~TestThis(){cout << "~TestThis::"<< flag << this->in << endl;}public: int in; int a = 10; string flag;};int main() { TestThis a(7); cout << "1" << endl; function<void(TestThis)> f = [a](TestThis b){b.a=100;cout << "func" << endl;}; cout << "2" << endl; f(a); cout << "result:" << a.a << endl; return 0; }
[color=rgb(38, 38, 3  ] 上面的代码输出:[color=rgb(38, 38, 3  ] TestThis(int)7[color=rgb(38, 38, 3  ] 1[color=rgb(38, 38, 3  ] TestThis&[color=rgb(38, 38, 3  ] TestThis&&[color=rgb(38, 38, 3  ] ~TestThis::TestThis&-463406200[color=rgb(38, 38, 3  ] 2[color=rgb(38, 38, 3  ] TestThis&[color=rgb(38, 38, 3  ] TestThis&&[color=rgb(38, 38, 3  ] TestThis&&func ~TestThis::TestThis&&2046146688 ~TestThis::TestThis&&2046146656 ~TestThis::TestThis&0 result:10 ~TestThis::TestThis&&0 ~TestThis::TestThis(int)7
================================================ 将上面的lambda改成 function<void(TestThis& > f = [a](TestThis &b){b.a=100;cout << "func" << endl;};
则输出: TestThis(int)7 1 TestThis& TestThis&& ~TestThis::TestThis&0 2 func result:100 ~TestThis::TestThis&&0 ~TestThis::TestThis(int)7
================================================= 将上面的代码改成 function<void(TestThis& > f = [&a](TestThis &b){b.a=100;cout << "func" << endl;};
则输出如下: TestThis(int)7 1 2 func result:100 ~TestThis::TestThis(int)7
|