PostThreadMessage是一个Windows API函数。其功能是将一个队列消息放入(寄送)到指定的消息队列里,不等待线程处理消息就返回。
PostThreadMessage的原型是这样的
BOOL PostThreadMessage( DWORD idThread,
UINT Msg,
WPARAM wParam,
LPARAM lParam
);
参数
idThread
其消息将被寄送的线程的线程标识符。如果线程没有消息队列,此函数将失败。当线程第一次调用一个Win 32 USER或GDI函数时,系统创建线程的消息队列。要得到更多的信息,参见备注。
Msg
指定将被寄送的消息的类型。
wParam
指定附加的消息特定信息。
IParam
指定附加的消息特定信息。
但是要注意以下问题
1 .PostThreadMessage有时会失败,报1444错误(Invalid thread identifier. )
其实这不一定是线程不存在的原因,也有可能是线程不存在消息队列(message queue)造成的。
事实上,并不是每个thread都有message queue,那如何让thread具有呢?
答案是,至少调用message相关的function一次,比如GetMessage,PeekMessage。
注:
windows线程分为UI线程和工作者线程,UI线程自带消息队列,用于维护界面的更新等操作,而工作者线程默认是没有消息队列的,如果需要,则可以在工作者线程内调用一次PeekMessage或者GetMessage,这样系统就会赋予工作者线程一个消息队列。
2.如果是post动态分配的memory给另外一个thread,要注意内存的正确释放。
3.PostThreadMessage不能够post WM_COPYDATE之类的同步消息,否则会报错
4.最好不要使用PostThreadMessage post message给一个窗口(或者UI线程),使用PostMessage替代。
因为PostThreadMessage消息会导致消息丢失,当UI正在“用户正在对UI主窗口进行一些UI上的操作,比如调整窗口大小等”或者“UI主线程正好有一个模式对话框弹出的情况”。
这里引用MSDN上的说明:
“Messages sent by PostThreadMessage are not associated with a window. As a general rule, messages that are not associated with a window cannot be dispatched by the DispatchMessage function. Therefore, if the recipient thread is in a modal loop (as used by MessageBox or DialogBox), the messages will be lost.To intercept thread messages while in a modal loop, use a thread-specific hook.”