不指定主窗口,程序不能退出消息泵

 下面是InitInstance() 中的一段代码
 MyWnd tWnd;   //自定义的一个窗口类
 CRect rc(100,100,600,550);
 tWnd.CreateEx(0,_T("Button"),_T("my name is button"),WS_POPUP,rc,NULL,0);
 tWnd.ShowWindow(SW_SHOW);
 this->m_pMainWnd = &tWnd; //1)程序可以正常退出
 //this->m_pMainWnd = new CWnd; //2)无法正常退出
 CWinApp::Run(); 
 return FALSE;

MyWnd是自己定义窗口,直接从CWnd继承而来。并用DestroyWindow()响应WM_LBUTTONUP。
下面代码说明了为什么1) 可以正常退出,且无需使用PostQuitMessage,而2)却不行。

//D:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\atlmfc\src\mfc\appcore.cpp(800)
//MSDN: the last member function called when the Windows window is destroyed.
//当DestroyWindow被调用时,WM_NCDESTROY被激发,调用下面这个函数
void CWnd::OnNcDestroy()
{
 // cleanup main and active windows
 CWinThread* pThread = AfxGetThread();
 if (pThread != NULL)
 {
  if (pThread->m_pMainWnd == this)
  {
   //2)不可能进入这里,就不可能调用AfxPostQuitMessage,所有程序无法退出
   if (!afxContextIsDLL)
   {
    // shut down current thread if possible
    if (pThread != AfxGetApp() || AfxOleCanExitApp())
     AfxPostQuitMessage(0);
   }
   pThread->m_pMainWnd = NULL;
  }
  ...

 

 

你可能感兴趣的:(thread,windows,Microsoft,null,mfc,button)