迷人香烟

文章
4
资源
0
加入时间
2年10月24天

C++11:function的使用

#include <iostream>#include <functional>//1、普通函数void func(){ std::cout << __func__ << std::endl;}//2、类中的静态函数class Test{public: static int test_func(int a) { st..