多线程依次接收信息并发送

写的不成功,各位有更好的方法请留言

// https://blog.csdn.net/c_base_jin/article/details/89741247
#include <Windows.h>
#include <iostream>           // std::cout
#include <thread>             // std::thread
#include <mutex>              // std::mutex, std::unique_lock
#include <condition_variable> // std::condition_variable
std::mutex mtx,mut;
std::condition_variable cv;
bool ready = false;
int g_data[5]= { 0,1,2,3,4 };
using namespace std;
constexpr auto N = 5;
int now = 0;
void go() {
	//unique_lock<std::mutex> lck(mtx);
	ready = true;
	cv.notify_all(); // 这是重点
}
void f(int m_id) {
	int m_last;
	int m_data[5];
	if (m_id == 0)m_last = N - 1;
	else m_last = m_id - 1;
	cout << "启动 " << m_id << endl;
	for (int i = 1; i < N; ) {
		std::unique_lock<std::mutex> lck(mtx);
		while(!ready)cv.wait(lck);
		//ready = false;
		if (now == m_id) {
			cout << m_id << "号线程第" << i << "次接受信息" << endl;
			i++;
			mut.lock();
			now++;
			mut.unlock();
			std::copy(std::begin(g_data), std::end(g_data), std::begin(m_data));
				if (now == N) {
				mut.lock();
				now = 0;
				mut.unlock();
			}
			std::copy(std::begin(m_data), std::end(m_data), std::begin(g_data));
			Sleep(300);
			ready = false;
			go();
		}
	}
	cout << m_id << "号线程结束" << endl;
	return;
}
std::thread threads[N+1];
int main()
{
	for (int i = 0; i < N; i++) {
		threads[i] = std::thread(f, i);
	}
    cout << "线程设置完成,开始:" << endl;
	go();  
	for (int i = 0; i < N; i++) {
		threads[i].join();
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

清欢_小铭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值