首页 >后端开发 >C++ >如何将 C 成员函数指针传递给外部函数?

如何将 C 成员函数指针传递给外部函数?

DDD
DDD原创
2024-11-27 05:56:13528浏览

How to Pass a C   Member Function Pointer to an External Function?

传递成员函数指针

在面向对象编程中,成员函数指针用于引用类方法。将它们传递给外部函数可能具有挑战性。

在本例中,类 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn