hello world
#include "stdafx.h"
#include <iostream>
#include <thread> <-1
using namespace std;
void hello() <-2
{
cout <<"hello concurrence world"<<endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
thread t(hello); <-3
t.join(); <-4
return 0;
}
- include thread 头文件
- 定义线程函数体
- 启动子线程
- 等待子线程结束
note:3,4等价于pthread中的pthreacreate 和 pthreadjoin