一、死锁的产生
两个mutex的时候,mutex1,mutex2
如果两把锁两个线程的顺序不一致,会造成相互等待释放资源,造成死锁
二、死锁的避免
1、是否需要两把以上的锁,如果不用两把锁,自然不会存在这个问题
2、锁的顺序一致,两个线程中调用的顺序一致
mutex1,mutex2都是
3、std::lock()
class LogfFile { public: LogfFile() { f.open("log.txt"); } void share_print(std::string msg, int id) { std::lock(m_mutex1, m_mutex2); std::lock_guard<std::mutex> guard(m_mutex1,std::adopt_lock); std::lock_guard<std::mutex> guard(m_mutex2, std::adopt_lock); cout<< msg << id << endl; } void share_print2(std::string msg, int id) { std::lock_guard<std::mutex> guard(m_mutex1, std::adopt_lock); std::lock_guard<std::mutex> guard(m_mutex2, std::adopt_lock); cout << msg << id << endl; } private: std::mutex m_mutex1, m_mutex2; std::ofstream f; };