MFC创建线程01 AfxBeginThread

 
//Step 0  设置 “在共享DLL中使用MFC”

//Step 1  包含头文件< afxwin.h>
#include 
#include 
using namespace std;

//Step 3 线程函数 返回值、参数
UINT ThreadProc(LPVOID)
{
	for(int i=0;i<10;i++)
		cout<

你可能感兴趣的:(Windows基础编程,mfc,delete,dll,null)