标签:
std::function<void(int a,int b)> ha; //函数封装 当成参数用callback std::bind(&fun1,this,std::placeholders::_1,std::placeholders::_2) //函数回调时使用方便之处:类型安全。
c++ 回调函数封装
原文地址:http://www.cnblogs.com/mattins/p/5033315.html