博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AfxGetMainWnd函数
阅读量:6428 次
发布时间:2019-06-23

本文共 2722 字,大约阅读时间需要 9 分钟。

使用AfxGetMainWnd函数获取MFC程序中的主框架类指针是一个常用作法。但是你会发现这一做法有时也会失灵。不信, 你测试一下下面的代码:

 

     view plaincopy to clipboardprint?
unsigned __stdcall SecondThreadFunc( void* pArguments )  
{  
   CMainFrame* pMainWnd =  (CMainFrame*)AfxGetMainWnd();  
    if (NULL!=pMainWnd)  
    {  
        CView *pView = pMainWnd->GetActiveView();  
        if (NULL!=pView)  
        {  
            CDC *pDC = pView->GetDC();  
            ASSERT(NULL!=pDC);  
            pDC->TextOut(100,100,_T("来自线程的字符串"));  
            pView->ReleaseDC(pDC);  
        }  
    }  
    return 0;  
}  
    void CMainFrame::OnTest1()  
{  
    // TODO: 在此添加命令处理程序代码  
    HANDLE hThread;  
    unsigned threadID;  
    hThread = (HANDLE)_beginthreadex( NULL, 0, &SecondThreadFunc, NULL, 0, &threadID );  
    // Destroy the thread object.  
    CloseHandle( hThread );  
}  
unsigned __stdcall SecondThreadFunc( void* pArguments )
{
   CMainFrame* pMainWnd =  (CMainFrame*)AfxGetMainWnd();
 if (NULL!=pMainWnd)
 {
  CView *pView = pMainWnd->GetActiveView();
  if (NULL!=pView)
  {
   CDC *pDC = pView->GetDC();
   ASSERT(NULL!=pDC);
   pDC->TextOut(100,100,_T("来自线程的字符串"));
   pView->ReleaseDC(pDC);
  }
 }
 return 0;
}
    void CMainFrame::OnTest1()
{
 // TODO: 在此添加命令处理程序代码
 HANDLE hThread;
 unsigned threadID;
 hThread = (HANDLE)_beginthreadex( NULL, 0, &SecondThreadFunc, NULL, 0, &threadID );
 // Destroy the thread object.
 CloseHandle( hThread );

 

     运行OnTest1函数,你会发现客户区并没有打印"来自线程的字符串"。下面我们把线程函数变一下:

 

view plaincopy to clipboardprint?
unsigned __stdcall SecondThreadFunc( void* pArguments )  
{  
//   CMainFrame* pMainWnd =  (CMainFrame*)AfxGetMainWnd();  
   COwnerApp *pApp = (COwnerApp *)AfxGetApp();  
    CMainFrame* pMainWnd = (CMainFrame*) pApp->m_pMainWnd;  
    if (NULL!=pMainWnd)  
    {  
        CView *pView = pMainWnd->GetActiveView();  
        if (NULL!=pView)  
        {  
            CDC *pDC = pView->GetDC();  
            ASSERT(NULL!=pDC);  
            pDC->TextOut(100,100,_T("来自线程的字符串"));  
            pView->ReleaseDC(pDC);  
        }  
    }  
    return 0;  
unsigned __stdcall SecondThreadFunc( void* pArguments )
{
//   CMainFrame* pMainWnd =  (CMainFrame*)AfxGetMainWnd();
   COwnerApp *pApp = (COwnerApp *)AfxGetApp();
    CMainFrame* pMainWnd = (CMainFrame*) pApp->m_pMainWnd;
 if (NULL!=pMainWnd)
 {
  CView *pView = pMainWnd->GetActiveView();
  if (NULL!=pView)
  {
   CDC *pDC = pView->GetDC();
   ASSERT(NULL!=pDC);
   pDC->TextOut(100,100,_T("来自线程的字符串"));
   pView->ReleaseDC(pDC);
  }
 }
 return 0;
}
 

 

 

 

      运行OnTest1函数,我们发现视图客户区出现了"来自线程的字符串"。接下来我们调试进去AfxGetMainWnd函数,发现AfxGetMainWnd函数如下:

 

     view plaincopy to clipboardprint?
_AFXWIN_INLINE CWnd* AFXAPI AfxGetMainWnd()  
    { CWinThread* pThread = AfxGetThread();  
        return pThread != NULL ? pThread->GetMainWnd() : NULL; }  
_AFXWIN_INLINE CWnd* AFXAPI AfxGetMainWnd()
 { CWinThread* pThread = AfxGetThread();
  return pThread != NULL ? pThread->GetMainWnd() : NULL; } 

 

 

 

      由于AfxGetThread()函数返回为NULL,所以AfxGetMainWnd函数返回为NULL。为什么会这样呢?下面我提出我的猜想(本人暂时验证不了,仅起抛砖引玉的作用)。我估计是MFC在多线程中大量运用了TLS(线程本地存储)来保存某些状态,主框架窗口指针属于主线程的TLS(线程本地存储)保存的状态,但是应用程序类指针不属于TLS保存的状态,它可以在该进程的任何线程获取。

 

本文来自CSDN博客,转载请标明出处:

你可能感兴趣的文章
精通Python爬虫从Scrapy到移动应用(文末福利)
查看>>
假如突然有了50块,你会做什么?
查看>>
Yii2.0中(Hash is invalid error)验证错误
查看>>
python
查看>>
UIApplication、AppDelegate、委托
查看>>
linux磁盘管理命令上
查看>>
php 中英文字符分割
查看>>
二分K均值(bisecting k-means)算法
查看>>
USACO1.1 Your Ride Is Here (ride)
查看>>
汉诺塔问题
查看>>
一个比较好的Linkedin论坛讲述Ubuntu的系统管理
查看>>
ios 代码创建UIToolBar
查看>>
病毒测试网站
查看>>
英语句子收集
查看>>
如何删除xcode中的多余证书
查看>>
linux网桥实现读后感
查看>>
jquery:点击回到顶部以及定点滚动
查看>>
vs C#控件使用:[1]DataGridView控件(一)
查看>>
如何利用Pre.im分发iOS测试包
查看>>
Godaddy 主机开通SSH的方法 2011-05-06
查看>>