#define CC_CALLBACK_0(__selector__,__target__, ...) std::bind(&__selector__,__target__, ##__VA_ARGS__) #define CC_CALLBACK_1(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, ##__VA_ARGS__) #define CC_CALLBACK_2(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, ##__VA_ARGS__) #define CC_CALLBACK_3(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, ##__VA_ARGS__)
①__selector__:綁定要回調的函數名,注意要加上命名空間:函數名函數
②__target__:綁定一個對象this
③std::placeholders::_1:綁定的函數裏除了第一個參數以外的參數,就是調用函數傳參時要傳第一個參數,若是_selector_後面有參數,則在用CC_CALLBACK時要綁定spa
④std::placeholders::_2:依次類推code
CC_CALLBACK的做用是讓_target_對象用_selector_函數時綁定第0/1/2/3個參數後面參數的值,例如對象
int add (int i, int j){ return i+j; } auto func = CC_CALLLBACK_1(add, this, 10);
這時獲得的func就至關與func(int i, int j = 10),用的時候能夠用func(15),blog
cout << func(15) << endl; // 結果是15 + 10 = 25,即cout << 25