码迷,mamicode.com
首页 > 编程语言 > 详细

MFC工作者线程

时间:2017-07-15 00:01:14      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:turn   开启   ...   ret   thread   文件中   protect   处理   func   

//************工作者线程**************
1.在头文件中添加UINT ThreadFunc(LPVOID lpParam); 注意应在类的外部

2.添加protected型变量:CWinThread* pThread

3.添加线程处理函数:
UINT ThreadFunc(LPVOID lpParam)
{
  while (true)
  {
  ...


    Sleep(1000);
  }
  return 0;
}

4.开启线程AfxBeginThread(ThreadFunc,lpParam);

MFC工作者线程

标签:turn   开启   ...   ret   thread   文件中   protect   处理   func   

原文地址:http://www.cnblogs.com/xslwm/p/7173027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!