CC_CALLBACK之间的区别

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

例一:@H_404_2@

如add(int,int,int),使用CC_CALLBACK_2,可以写成CC_CALLBACK_2(Test::add,this,3,3),得到的func以后使用时候直接给出前两个参数赋值就可以了,如func(1,2);@H_404_2@
@H_404_2@

例二:@H_404_2@

@H_404_2@

#define@H_404_2@ CC_CALLBACK_0(__selector__,__target__,...) std::bind(&__selector__,##__VA_ARGS__)
#define@H_404_2@ CC_CALLBACK_1(__selector__,std::placeholders::_1,255)">#define@H_404_2@ CC_CALLBACK_2(__selector__,std::placeholders::_2,255)">#define@H_404_2@ CC_CALLBACK_3(__selector__,std::placeholders::_3,##__VA_ARGS__)

①__selector__:绑定要回调的函数名,注意要加上命名空间:函数

②__target__:绑定一个对象

③std::placeholders::_1:绑定的函数里除了第一个参数之外的参数,就是调用函数传参时要传第一个参数,如果_selector_后面有参数,则在用CC_CALLBACK时要绑定

④std::placeholders::_2:依次类推

CC_CALLBACK的作用@H_404_2@@H_404_2@是让_target_对象用_selector_函数绑定@H_404_2@第0/1/2/3个参数后面参数的值,例如

@H_404_2@
int@H_404_2@ add (int@H_404_2@ i,int@H_404_2@ j){

@H_404_2@return@H_404_2@ i+j;

}

auto func @H_404_2@= CC_CALLLBACK_1(add,255)">this@H_404_2@,10@H_404_2@);
@H_404_2@

这时得到的func就相当与func(int i,intj = 10@H_404_2@),用的时候可以用func(15),

cout << func(15@H_404_2@) << endl; //@H_404_2@ 结果是15 + 10 = 25,即cout << 25@H_404_2@
原文链接:https://www.f2er.com/cocos2dx/341974.html

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