如何在类初始化时用非静态类函数初始化静态函数指针?

时间:2011-05-02 02:36:27

标签: c++ class function-pointers

定义(Core.h):

static int (*foolink)(int*, char*, key*, key*);

还在Core.cpp中重新定义。此代码导致错误:

foolink = this->step;

错误:

Engine/Core.cpp:31: error: argument of type 'int (Core::)(int*, char*, key*, key*)' does not match 'int (*)(int*, char*, key*, key*)'

指针使用:

(*foolink)(NULL, NULL, NULL, NULL);

怎么了?请帮帮我!

2 个答案:

答案 0 :(得分:3)

在C ++程序中,大多数函数成员函数;也就是说,他们是一个阶级的一部分。您不能使用普通的函数指针指向成员函数;相反,你必须使用成员函数指针

在您的情况下,您可以将其定义为

     v you have to name the class here
int (YourClass::*foolink)(int*, char*, key*, key*);
foolink = &YourClass::step;

// This is how you can call the function via member function pointer
YourClass object, *pObject = &object;
// One way is to envoke the function from object
(object.*foolink)(...);
// The other way is from pointer to object
(pObject->*foolink)(...);

C ++常见问题

Pointers to Member Functions

答案 1 :(得分:1)

this->step的类型必须是返回整数并将int *,char *,key *和key *作为参数的函数。这显然不是。请记住,将类方法分配给普通函数是行不通的;它们都必须是方法,或者都是正常的功能,但不是混合,这是我怀疑你想要做的。