标题很有描述性。我在一个结构的向量中存储了一个指向成员函数的非静态指针,该结构在我的类中存储了成员函数指针,我需要类中的一个静态函数来调用该函数。
我可以访问静态函数中的类实例,但我似乎仍然无法通过错误消息的指针 b/c 调用成员函数error C2597: illegal reference to non-static member
我现在的语法是(object->*(vector[a].function)) (parameter)
. 简化代码如下:
class Base
{
private:
struct FunctionRelation
{
UINT message;
LRESULT (Base::*function) (HWND, WPARAM, LPARAM);
};
static LRESULT CALLBACK WndProc (HWND window, UINT msg, WPARAM wparam, LPARAM lparam);
std::vector<FunctionRelation> func_rel;
}
指向 Base 的指针存储在传递给WndProc
函数的窗口的 USERDATA 中,因此我可以访问类实例。在WndProc
我有:
Base *user_data = reinterpret_cast<Base *>(GetWindowLongPtr (window, GWLP_USERDATA));
//Loop through our function relations and call those functions. Else, just return DefWindowProc.
if (user_data != NULL) //If it is not directly after we created a window.
for (int a = 0;a < static_cast<int>(user_data->func_rel.size ());a++)
if (user_data->func_rel[a].message == msg)
return (user_data->*(func_rel[a].function)) (window, wparam, lparam);
return DefWindowProc (window, msg, wparam, lparam);