看板 C_and_CPP 關於我們 聯絡資訊
AfxBeginThread 的參數主要有2個 1. 要執行的函數 2. 參數 如果要執行的函數不是一個 global function 的話 那他必定要是個 static method?? <-- 可是 我想要推翻這個情況 我想要利用多型來讓他呼叫 我想要的method 我連function pointer都用上了 還是束手無策 class MyThread{ public: void run( void (Runnable::*funPtr)() ){ AfxBeginThread(funPtr,NULL); <-----error1 } } class Runnable{ public: virtual void run()=0; } class Tester : public Runnable{ public: void run(){ //...do something } } void main(){ Runnable* r = new Tester(); MyThread* thread = new MyThread(); thread->run(Tester::run) <-----error2 } error1 : 無法將 void (__thiscall Runnable::*)() 轉成AFX_THREADPROC error2 : 無法將 void(__thiscall Tester::*)()轉成 void (__thiscall Runnable::*)() 如果定static 方法 則就不用去管這些問題...>"< 可是 我就想用多型嘛.. -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 210.69.114.105
kazuto:傳入靜態函數 在靜態函數內部再做你想要的呼叫 10/06 10:21
jaw109:那個..... 多型跟虛擬函數好像不一樣 10/06 12:08