我试图初始化一个函数指针变量,以将其作为参数传递给采用函数指针的构造函数。
我几乎可以在网上找到该声明的每个版本,而且所有版本都给我带来编译错误。
// the functions
void *OthelloBoard::GetOptions() const { return nullptr; }
void OthelloBoard::SetOptions(const void *data) {}
// the function pointers
void *(OthelloBoard::*GetOptionsPtr)() const = &OthelloBoard::GetOptions;
void (OthelloBoard::*SetOptionsPtr)(const void *) = &OthelloBoard::SetOptions;
// the constructor
BoardClass(void (*setOptions)(const void *), void *(*getOptions)()) {}
// the constructor call
BoardClass OthelloBoard::mClass(SetOptionsPtr, GetOptionsPtr);
我希望变量能够编译并正确传递,但出现此错误:
error: cannot initialize a variable of type 'void (OthelloBoard::*)(const void *)' with an rvalue of type 'void (*)(const void *)'
void (OthelloBoard::*SetOptionsPtr)(const void *) = &OthelloBoard::SetOptions;
^ ~~~~~~~~~~~~~~~~~~~~~~~~~