void printA(int a) { cout<<a<<endl; } std::function<void(int a)> func; func = printA; func(2);. 1; 2; 3; 4; 5; 6; 7; 8. 儲存lambda表示式. std ...
確定! 回上一頁