传递成员函数指针
在面向对象编程中,成员函数指针用于引用类方法。将它们传递给外部函数可能具有挑战性。
在本例中,类 testMenu 尝试使用成员函数类指针将成员函数 test2 传递给另一个函数。然而,开发者不确定如何使用 this 指针来正确发送函数。
为了解决这个问题,接收函数 SetButton 需要两个参数:一个指向对象 (ButtonObj) 的指针和一个指向函数(ButtonFunc)。这允许外部函数使用两个指针调用成员函数: ((ButtonObj)->*(ButtonFunc))();。
修改后的 SetButton 函数变为:
template <class object> void SetButton(int xPos, int yPos, LPCWSTR normalFilePath, LPCWSTR hoverFilePath, LPCWSTR pressedFilePath, int Width, int Height, object *ButtonObj, void (object::*ButtonFunc)()) { BUTTON::SetButton(xPos, yPos, normalFilePath, hoverFilePath, pressedFilePath, Width, Height); this->ButtonObj = ButtonObj; this->ButtonFunc = ButtonFunc; }
在 testMenu 类中,使用以下语法将对象指针传递给 SetButton:
testMenu::testMenu() :MenuScreen("testMenu") { x.SetButton(100,100,TEXT("buttonNormal.png"), TEXT("buttonHover.png"), TEXT("buttonPressed.png"), 100, 40, this, test2); draw = false; }
By按照这些步骤,成员函数指针 test2 成功传递给 SetButton 函数,允许外部函数根据需要调用它。
以上是如何将 C 成员函数指针传递给外部函数?的详细内容。更多信息请关注PHP中文网其他相关文章!