C++知识点-线程3-线程锁

线程锁的第一个版本

#include <thread>
#include <string>
#include <mutex>
#include <iostream>
using namespace std;

std::mutex mu;


void shared_print(string msg, int id)
{
	mu.lock();
	cout << msg.c_str() << id << endl;
	mu.unlock();
}

void function_1() {
	for (int i = 0; i>-100; i--)
		shared_print(string("From t1: "), i);
}

int main() {
	std::thread t1(function_1);
	for (int i = 0; i>-100; i--)
		shared_print(string("From main: "), i);
	t1.join();
	return 0;
}

线程锁的第二个版本,使用lock_guard

#include <thread>
#include <string>
#include <mutex>
#include <fstream>

using namespace std;

std::mutex mu;

class LogFile {
	std::mutex m_mutex;
	ofstream f;
public:
	
	LogFile()
	{
		f.open("log.txt");
	}
	void shared_print(string id, int value) {
		std::lock_guard<mutex> locker(m_mutex);
		f << "From " << id << ": " << value << endl;
	}
	
};

void function_1(LogFile& log)
{
	for (int i = 0; i < 100; i++)
		log.shared_print(string("From t1: "), i);
}

int main() {
	LogFile log;
	std::thread t1(function_1, std::ref(log));
	for (int i = 0; i > -100; i--)
		log.shared_print(string("From main: "), i);
	t1.join();
	return 0;
}

最后的话:

我是一个工作10年的程序员,工作中经常会遇到需要查一些关键技术,但是很多技术名词的介绍都写的很繁琐,为什么没有一个简单的/5分钟能说清楚的博客呢. 我打算有空就写写这种风格的指南文档.CSDN上搜蓝色的杯子, 没事多留言,指出我写的不对的地方,写的排版风格之类的问题,让我们一起爱智求真吧.wisdomfriend@126.com是我的邮箱,也可以给我邮箱留言.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值