CC_CALLBACK之间的区别

前端之家收集整理的这篇文章主要介绍了CC_CALLBACK之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例一:

如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
原文链接:https://www.f2er.com/cocos2dx/341974.html

猜你在找的Cocos2d-x相关文章