互斥資源加鎖的實現方式

若使用mutex.lock()方法時std::cout出現異常,則會導致mutex無法釋放。改用std::lock_guard可有效避免該情況發生。

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

std::mutex mu;

// 對資源加鎖
/// 用lock若cout拋出異常則mu永遠不會被釋放
/// 用lock_guard析構時自動釋放
void shared_print(std::string msg, int id) {
       std::lock_guard<std::mutex> guard(mu); // 較好的方法
       //mu.lock(); // 較差的方法
       std::cout << msg << id << std::endl;
       //mu.unlock();
}

void func_1() {
       for (int i = 0; i > -100; --i) {
              shared_print("from func_1 ", i);
       }
}

class Fctor {
public:
       void operator()(string& s) {
              for (int i = 0; i > -10; --i) {
                     std::cout << "from t1: " << s << std::endl;
              }
              s = "factor";
       }
};

int main() {
       std::thread t1(func_1);

       for (int i = 0; i < 100; ++i) {
              shared_print("from main ", i);
       }

       t1.join();
       return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章