我是靠谱客的博主 温柔季节,最近开发中收集的这篇文章主要介绍线程:CPP lambda表达式与多线程,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

c++ lambda表达式获取线程ID以及线程等待
#include <thread>
#include<chrono>
thread th1([]()
{
this_thread::sleep_for(chrono::seconds(3));
cout << this_thread::get_id() << endl;
});
thread th2([]()
{
this_thread::sleep_for(chrono::seconds(5));
cout << this_thread::get_id() << endl;
});

	thread th3([]()
{
this_thread::sleep_for(chrono::seconds(3));//等待3秒
显示ID
this_thread::yield();//让CPU先执行其他线程
空闲时再执行自己
cout << this_thread::get_id() << endl;
//this_thread::sleep_until();//sleep_until
一直等待到某一时刻
});
thread th4([]()
{
this_thread::sleep_for(chrono::seconds(5));//等待5秒
显示线程ID
cout << this_thread::get_id() << endl;
});




最后

以上就是温柔季节为你收集整理的线程:CPP lambda表达式与多线程的全部内容,希望文章能够帮你解决线程:CPP lambda表达式与多线程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部