gpt4 book ai didi

c++ - 将成员函数指针转换为 TIMERPROC

转载 作者:可可西里 更新时间:2023-11-01 18:28:46 25 4
gpt4 key购买 nike

如何将成员函数指针转换为 TIMERPROC 类型以用于 WINAPI SetTimer?下面的代码片段显示了我现在是如何做的,但是当我编译时我得到了这个错误:

error C2664: 'SetTimer' : cannot convert parameter 4 from 'void (__stdcall CBuildAndSend::* )(HWND,UINT,UINT_PTR,DWORD)' to 'TIMERPROC'

回调需要绑定(bind)到它的原始类实例。如果有更好的方法来做到这一点,我会洗耳恭听。谢谢。

class CMyClass
{
public:
void (CALLBACK CBuildAndSend::*TimerCbfn)( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );

private:
void CALLBACK TimeoutTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
};

CMyClass::CMyClass()
{
...

this->TimerCbfn = &CBuildAndSend::TimeoutTimerProc;

...

::CreateThread(
NULL, // no security attributes
0, // use default initial stack size
reinterpret_cast<LPTHREAD_START_ROUTINE>(BasThreadFn), // function to execute in new thread
this, // thread parameters
0, // use default creation settings
NULL // thread ID is not needed
)
}

void CALLBACK CMyClass::TimeoutTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime )
{
...
}

static DWORD MyThreadFn( LPVOID pParam )
{
CMyClass * pMyClass = (CMyClass *)pParam;

...

::SetTimer( NULL, 0, BAS_DEFAULT_TIMEOUT, pMyClass->TimerCbfn ); // <-- Error Here

...
}

最佳答案

成员函数和 TIMEPROC 不是兼容类型。

您需要使成员函数static。然后它将起作用,假设参数列表在静态成员函数和 TIMEPROC 中是相同的。

class CMyClass
{
public:
//modified
void (CALLBACK *TimerCbfn)(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);

private:
//modified
static void CALLBACK TimeoutTimerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
};

函数指针和成员函数都被修改了。现在它应该可以工作了。

现在由于回调函数变成了静态的,它不能访问类的非静态成员,因为函数中没有 this 指针。

要访问非静态成员,您可以这样做:

class CMyClass
{
public:

static void CALLBACK TimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );

//add this static member
static std::map<UINT_PTR, CMyClass*> m_CMyClassMap; //declaration
};

//this should go in the CMyClass.cpp file
std::map<UINT_PTR, CMyClass*> CMyClass::m_CMyClassMap; //definition

static DWORD MyThreadFn( LPVOID pParam )
{
CMyClass * pMyClass = (CMyClass *)pParam;

UINT_PTR id = ::SetTimer( NULL, 0, BAS_DEFAULT_TIMEOUT, CMyClass::TimerProc);

//store the class instance with the id as key!
m_CMyClassMap[id]= pMyClass;
}

void CALLBACK CMyClass::TimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime )
{
//retrieve the class instance
CMyClass *pMyClass= m_CMyClassMap[idEvent];

/*
now using pMyClass, you can access the non-static
members of the class. e.g
pMyClass->NonStaticMemberFunction();
*/
}

我从我的实现中删除了 TimerCbfn,因为它并不真正需要。您可以将 TimerProc 作为最后一个参数直接传递给 SetTimer

关于c++ - 将成员函数指针转换为 TIMERPROC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6472948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com