当前位置: 首页 > article >正文

C++多线程学习[六]: 多线程之间的同步

一、同步问题

实际开发场景中有很多需要同步的情况,例如,音频和视频的同步输出、或者通讯能够第一时间同步接受处理…

二、多线程同步demo

在这里插入图片描述
可以看到cond可以阻塞等待(wait)可以通知一个线程(notify_one)也可以通知所有的线程(notify_all)等等 这里采用的通知一个线程即notify_one。
在这里插入图片描述

#include<iostream>
#include<thread>
#include<mutex>
#include<list>
#include<sstream> //拼接字符串

using namespace std;
condition_variable cond; //通知信号

static mutex mtx;
list<string> mesg;

void ReadTest(int i)
{
	for (;;)
	{
		if (mesg.empty())
		{
			this_thread::sleep_for(10ms);
			continue;
		}
		unique_lock<mutex> lock(mtx);
		cond.wait(lock);
		cout << i<<"thread recive mseg :" << mesg.front() << endl;
		mesg.pop_front();
	}
}
void WriteTest()
{
	int i = 0;
	for (;;)
	{
		this_thread::sleep_for(30ms);
		unique_lock<mutex> lock(mtx);
		stringstream ss;
		ss << "mesg" << i++;
		mesg.push_back(ss.str());
		cond.notify_one();
		cout << "send mesg" << endl;
	}

}
int main() 
{
	thread th(WriteTest);
	th.detach();
	for (int i = 0;i < 3;i++)
	{
		thread th(ReadTest,i+1);
		th.detach();
	}
	getchar();
	return 0;
}

总的来说就是一个线程需要通知其他线程时通过发送通知信号让其他阻塞线程等待接受信号,达成同步的效果。


http://www.kler.cn/a/230074.html

相关文章:

  • day2全局注册
  • 若依框架部署在网站一个子目录下(/admin)问题(
  • 3DMAX带孔绞线插件使用方法详解
  • Hot100 - 除自身以外数组的乘积
  • 微信小程序 城市点击后跳转 并首页显示被点击城市
  • 华三(HCL)和华为(eNSP)模拟器共存安装手册
  • seatunnel数据集成(二)数据同步
  • 简单指针运算c语言
  • JAVA中的main方法
  • 如何使用Docker部署DashDot服务器仪表盘并结合cpolar实现公网访问
  • Django连接Mysql
  • CSS是一门需要单独学习的技术吗?
  • STM32之USART
  • 敏捷开发的INVEST原则
  • Python 中的 os 模块常见方法
  • Leetcode 518 零钱兑换 II
  • GPTs保姆级教程之实践
  • 一周学会Django5 Python Web开发-Django5介绍及安装
  • npm 上传一个自己的应用(3) 在项目中导入及使用自己上传到NPM的工具
  • 【Vitis】HLS高层次综合的优势
  • 【Linux系统化学习】进程替换
  • 阿里云OSS对象存储
  • 大型装备制造企业案例分享——通过CRM系统管理全球业务
  • Ubuntu下anaconda的常用操作
  • JAVA中的抽象类
  • Oracle systemstate、gdb、dbx介绍