std::bind 重载绑定
摘要://普通函数重载绑定void print1(){ std::cout << "non args \n";} void print1(int v){ std::cout << "arg value is " << v << std::endl;} std::function<void()> fn =
阅读全文
posted @ 2015-07-13 21:20
posted @ 2015-07-13 21:20