傳遞成員函數指標
在物件導向程式設計中,成員函數指標用來引用類別方法。將它們傳遞給外部函數可能具有挑戰性。
在本例中,類別 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中文網其他相關文章!