例一:
如add(int,int,int),使用CC_CALLBACK_2,可以写成CC_CALLBACK_2(Test::add,this,3,3),得到的func以后使用时候直接给出前两个参数赋值就可以了,如func(1,2);
例二:
#define CC_CALLBACK_0(__selector__,__target__,...) std::bind(&__selector__,##__VA_ARGS__) #define CC_CALLBACK_1(__selector__,std::placeholders::_1,255)">#define CC_CALLBACK_2(__selector__,std::placeholders::_2,255)">#define CC_CALLBACK_3(__selector__,std::placeholders::_3,##__VA_ARGS__)
①__selector__:绑定要回调的函数名,注意要加上命名空间:函数名
②__target__:绑定一个对象
③std::placeholders::_1:绑定的函数里除了第一个参数之外的参数,就是调用函数传参时要传第一个参数,如果_selector_后面有参数,则在用CC_CALLBACK时要绑定
④std::placeholders::_2:依次类推
CC_CALLBACK的作用是让_target_对象用_selector_函数时绑定第0/1/2/3个参数后面参数的值,例如
int add (int i,int j){ return i+j; } auto func = CC_CALLLBACK_1(add,255)">this,10);
这时得到的func就相当与func(int i,intj = 10),用的时候可以用func(15),
cout << func(15) << endl; // 结果是15 + 10 = 25,即cout << 25