C/C++ 多线程
环境:Windows, Visual Studio 2015
#include "stdafx.h"
#include <thread> //thread 头文件,实现了有关线程的类
#include <iostream>
void t1_run() {
// 线程1:循环1000次并输出"线程1正在运行"
for (int i = 0; i < 1000; i++)
{
std::cout << "线程1正在运行" << std::endl;
}
}
void t2_run() {
// 线程2:循环1000次并输出"线程2正在运行"
for (int i = 0; i < 1000; i++)
{
std::cout << "线程2正在运行" << std::endl;
}
}
int main()
{
// 创建两个线程对象,将要运行的函数作为参数
std::thread t1(t1_run);
std::thread t2(t2_run);
// join()函数,运行线程.
t1.join();
t2.join();
return 0;
}
Output: 两个线程交替运行
总结:
Step 1: 引入thread头文件
Step 2:编写一个或多个函数(void返回值)
Step 3:创建线程对象,std::thread()
Step 4:运行线程,join()
点击查看更多内容
30人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦