用c++语言,请写出一个创建、启动线程的实例?

2024-12-16 00:20:47
推荐回答(1个)
回答1:

#include "stdafx.h"
#include
#include
using namespace std;

DWORD WINAPI dThread(LPVOID lpParameter)
{
for(int i=0; i<100; i++)
{
cout << i << endl;
}
return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{

HANDLE hThread = CreateThread(NULL, 0, dThread, NULL, 0, 0);

char cNum;
cin >> cNum;

return 0;
}

注意要使用mfc库 不要使用标准库