lock_guard
- 鎖守衛是一個管理mutex對象的對象,使其始終處于鎖定狀態。
- 在構造時,mutex對象被調用線程鎖定,在銷毀時,mutex被解鎖。這是最簡單的鎖,作為一個自動持續時間的對象,它的作用特別大,可以持續到上下文結束。通過這種方式,它可以保證mutex對象在發生異常時被正確解鎖。
- 但請注意,lock_guard對象并不以任何方式管理mutex對象的壽命:mutex對象的持續時間至少應延長到鎖定它的lock_guard被破壞為止。
代碼
// lock_guard example
#include <iostream> // std::cout
#include <thread> // std::thread
#include <mutex> // std::mutex, std::lock_guard
#include <stdexcept> // std::logic_errorstd::mutex mtx;void print_even (int x) {if (x%2==0) std::cout << x << " is even\n";else throw (std::logic_error("not even"));
}void print_thread_id (int id) {try {// using a local lock_guard to lock mtx guarantees unlocking on destruction / exception:std::lock_guard<std::mutex> lck (mtx);print_even(id);}catch (std::logic_error&) {std::cout << "[exception caught]\n";}
}int main ()
{std::thread threads[10];// spawn 10 threads:for (int i=0; i<10; ++i)threads[i] = std::thread(print_thread_id,i+1);for (auto& th : threads) th.join();return 0;
}
參考鏈接