在c++代码设计,会遇到很多回调函数的使用,如果设计复杂也会遇到结构体中的某个成员是回调函数,而这个回调函数又是类的某个成员函数。
下面给出一个例子:
class A
{
public:
virtual void say(int a, int b) {
printf("A : %d, %d\n", a, b);
}
};
class A1 : public A
{
public:
void say(int a, int b) {
printf("A1 : %d, %d\n", a, b);
}
};
typedef void (A::*func_t)(int a, int b);
void test(A* ptr, func_t fun, int a, int b)
{
(ptr->*fun)(a, b);
}
int main(int argc, char **argv)
{
A* a = new A1;
func_t f = &A::say;
test(a, f, 1, 2);
return 0;
}
这样的话,我们可能通过保存test作为一个结构体成员使用,
把对应的参数都传递过来。