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

WIN32 创建线程CreateThread

时间:2020-06-14 12:33:04      阅读:71      评论:0      收藏:0      [点我收藏+]

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

#include <stdio.h>
#include <iostream>
#include <windows.h>

using namespace std;
//定义线程调用函数
DWORD WINAPI ThreadProc(LPVOID lpParamter)
{
    int iRunTime = 0;
    while(++iRunTime<10)//执行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 << ulThreadId <<endl; getchar(); //system("pause"); return 0; }

 

WIN32 创建线程CreateThread

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

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

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