线程锁的第一个版本
#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是我的邮箱,也可以给我邮箱留言.