WIN32 创建线程CreateThread

2021-05-14 12:30

阅读:718

标签:win   param   out   div   running   ace   pre   执行   time   

#include 
#include 
#include using namespace std;
//定义线程调用函数
DWORD WINAPI ThreadProc(LPVOID lpParamter)
{
    int iRunTime = 0;
    while(++iRunTime10)//执行10次跳出
    {
        cout "ThreadProc() is running!"endl;
        Sleep(10);
    }
    //ExitThread(-1);
    return 0;
}

int main()
{
  //定义变量接受线程返回ID unsigned
long ulThreadId = 0;
  //创建线程 HANDLE hThread
= CreateThread(NULL, 0, ThreadProc, NULL, 0, &ulThreadId);
  //关闭资源 CloseHandle(hThread);
//cout getchar(); //system("pause"); return 0; }

 

WIN32 创建线程CreateThread

标签:win   param   out   div   running   ace   pre   执行   time   

原文地址:https://www.cnblogs.com/ganxiang/p/13124338.html


评论


亲,登录后才可以留言!