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

MFC多线程

时间:2017-10-08 18:14:11      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:mfc多线程

void __cdecl ThreadFun(LPVOID lpParam)  
{  
	CTestDlg * p = (CTestDlg*)lpParam;  
	int i=0;  
	while(1)  
	{  
		i++;  
		CTime time = CTime::GetCurrentTime();  
		CString szTime = time.Format("%H:%M:%S");  
		p->SetWindowText(szTime.GetBuffer(szTime.GetLength()));  
		Sleep(1000);  
		if(i>=50)  
			break;  
	}  
 
}  
void CTestDlg::OnBnClickedButton7()
{
	_beginthread(ThreadFun,0,this);
}

VC2010编译运行

MFC多线程

标签:mfc多线程

原文地址:http://9233403.blog.51cto.com/9223403/1970695

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