摘要: //普通函数重载绑定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 燎原火 阅读(1587) 评论(0) 推荐(0) 编辑