CWinThread::Run

为用户界面线程提供一个默认消息循环。

virtual int Run( );

返回值

由线程返回的 int 值。此值可通过调用 GetExitCodeThread检索。

备注

Run 获取和计划Windows消息,直到应用程序收到 WM_QUIT 消息。如果线程的消息队列当前不包含消息,Run 调用 OnIdle 执行空闲时间处理。传入消息转到处理的特定的 PreTranslateMessage 成员函数然后标准键盘转换的Windows函数 TranslateMessage。最后,DispatchMessage Windows函数调用。

Run 很少重写,但是,您可以重写它实现特定的行为。

此成员函数在用户界面线程只使用。

要求

Header: afxwin.h

请参见

参考

CWinThread选件类

层次结构图

CWinApp::Run