開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
vs2010
問題(Question):
我想在自己的 class Display 實現 callback 功能 , 讓其他 class 使用
目前我想比較正式的方法應該是用 template 方式去做,但這份
class 要改成 template 的話有些工程,故想加上 function pointer 方式去做,
但發現好像不能塞其他 class 之 member function,
問題之程式碼簡化如下,
同步附 Code http://codepad.org/nT3XDA5q
//////
class Display
{
private:
void (*m_CallBackFunc)(int) ;
public:
Display( void (*CallBackFunc)(int) = NULL)
: m_CallBackFunc( CallBackFunc )
{
}
void ToUpdateDisplay(int iSel)
{
if(m_CallBackFunc)
if(rand() & 1) // some condition here
m_CallBackFunc(iSel);
}
};
///////
class PlaneDlg
{
private:
Display m_display;
public:
PlaneDlg ()
: m_display ( UpdateDisplay ) // <- 人是它殺的 ...
// : m_dysplay ( & PlaneDlg :: UpdateDisplay) // 這樣還是救不了它 ..
{
}
void UpdateDisplay(int iGrp)
{
// do something..
}
};
上述黃色部份我不知道該怎麼才能讓它過 ,
vs 的錯誤訊息是
'Display::Display(,void (__cdecl *)(int))' : 無法將參數 2 從 'void
(__thiscall PlaneDlg::* )(int)' 轉換成 'void (__cdecl *)(int)'
希望能動到最小的 Display ,去實現這個功能。
另也希望版友能針對此問題提供一些架構上的意見,
避開日後同樣的問題再重現。
非常感謝各位!