mutex Mutex 系列类 std::mutex : 最基本的Mutex类 std::recursive_mutex : 递归Mutex类 std::time_mutex : 定时Mutex类 std::recursive_timed_mutex : 定时递归Mutex类
Lock类 std::lock_guard : 与Mutex RAII相关,方便线程对互斥量上锁。 std::unique_lock : 与Mutex RAII相关,但提供了更好的上锁和解锁控制
其他类型 std::once_flag std::adopt_lock_t std::defer_lock_t std::try_to_lock_t
函数 std::try_lock : 尝试同时对多个互斥量上锁 std::lock : 可以同时对多个互斥量上锁 std::call_once : 如果多个线程需要同时调用某个函数,call_once 可以保证多个线程对该函数只调用一次。
std::mutex介绍 std::mutex 是C++11 中最基本的互斥量,std::mutex 对象提供了独占所有权的特性——即不支持递归地对 std::mutex 对象上锁,而 std::recursive_lock 则可以递归地对互斥量对象上锁。
构造函数,std::mutex不允许拷贝构造,也不允许 move 拷贝,最初产生的 mutex 对象是处于 unlocked 状态的。 lock(),调用线程将锁住该互斥量。线程调用该函数会发生下面 3 种情况:(1). 如果该互斥量当前没有被锁住,则调用线程将该互斥量锁住,直到调用 unlock之前,该线程一直拥有该锁。(2). 如果当前互斥量被其他线程锁住,则当前的调用线程被阻塞住。(3). 如果当前互斥量被当前调用线程锁住,则会产生死锁(deadlock)。 unlock(), 解锁,释放对互斥量的所有权。 try_lock(),尝试锁住互斥量,如果互斥量被其他线程占有,则当前线程也不会被阻塞。线程调用该函数也会出现下面 3 种情况,(1). 如果当前互斥量没有被其他线程占有,则该线程锁住互斥量,直到该线程调用 unlock 释放互斥量。(2). 如果当前互斥量被其他线程锁住,则当前调用线程返回 false,而并不会被阻塞掉。(3). 如果当前互斥量被当前调用线程锁住,则会产生死锁(deadlock)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 #include <iostream> #include <thread> #include <mutex> volatile int counter (0 ) ; std::mutex mtx; void attempt_10k_increases () { for (int i=0 ; i<10000 ; ++i) { if (mtx.try_lock ()) { ++counter; mtx.unlock (); } } } int main (int argc, const char * argv[]) { std::thread threads[10 ]; for (int i=0 ; i<10 ; ++i) threads[i] = std::thread (attempt_10k_increases); for (auto & th : threads) th.join (); std::cout << counter << " successful increases of the counter.\n" ; return 0 ; }
std::recursive_mutex std::recursive_mutex 与 std::mutex 一样,也是一种可以被上锁的对象,但是和 std::mutex 不同的是,std::recursive_mutex 允许同一个线程对互斥量多次上锁(即递归上锁),来获得对互斥量对象的多层所有权,std::recursive_mutex 释放互斥量时需要调用与该锁层次深度相同次数的 unlock(),可理解为 lock() 次数和 unlock() 次数相同,除此之外,std::recursive_mutex 的特性和 std::mutex 大致相同。
std::time_mutex std::time_mutex 比 std::mutex 多了两个成员函数,try_lock_for(),try_lock_until()。
try_lock_for 函数接受一个时间范围,表示在这一段时间范围之内线程如果没有获得锁则被阻塞住(与 std::mutex 的 try_lock() 不同,try_lock 如果被调用时没有获得锁则直接返回 false),如果在此期间其他线程释放了锁,则该线程可以获得对互斥量的锁,如果超时(即在指定时间内还是没有获得锁),则返回 false。
try_lock_until 函数则接受一个时间点作为参数,在指定时间点未到来之前线程如果没有获得锁则被阻塞住,如果在此期间其他线程释放了锁,则该线程可以获得对互斥量的锁,如果超时(即在指定时间内还是没有获得锁),则返回 false
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 #include <iostream> #include <chrono> #include <thread> #include <mutex> std::timed_mutex mtx; void fireworks () { while (!mtx.try_lock_for (std::chrono::milliseconds (200 ))) { std::cout << "-" ; } std::this_thread::sleep_for (std::chrono::milliseconds (1000 )); std::cout << "*\n" ; mtx.unlock (); } int main () { std::thread threads[10 ]; for (int i=0 ; i<10 ; ++i) threads[i] = std::thread (fireworks); for (auto & th : threads) th.join (); return 0 ; }
std::recursive_timed_mutex std::recursive_timed_mutex 和 std::recursive_mutex 与 std::mutex 的关系一样,std::recursive_timed_mutex 的特性也可以从 std::timed_mutex 推导出来。
std::lock_guard 与Mutex RAII相关,方便线程对互斥量上锁,(初始化时自动上锁,作用域结束后自动解锁)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 #include <iostream> #include <thread> #include <mutex> #include <stdexcept> std::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 { 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 ]; for (int i=0 ; i<10 ; ++i) threads[i] = std::thread (print_thread_id,i+1 ); for (auto & th : threads) th.join (); return 0 ; }
std::unique_lock 与 Mutex RAII 相关,方便线程对互斥量上锁,但提供了更好的上锁和解锁控制 unique_lock比lock_guard能提供更多的功能特性(但需要付出性能的一些代价)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 #include <iostream> #include <thread> #include <mutex> std::mutex mtx; void print_block (int n, char c) { std::unique_lock<std::mutex> lck (mtx) ; for (int i=0 ; i<n; ++i) { std::cout << c; } std::cout << '\n' ; } int main () { std::thread th1 (print_block,50 ,'*' ) ; std::thread th2 (print_block,50 ,'$' ) ; th1.join (); th2.join (); return 0 ; }
std::call_once std::call_once 是 C++ 标准库提供的一个函数,用于保证一个函数只会被调用一次,即使在多线程环境下也能确保线程安全。std::call_once 主要用于执行只需要执行一次的初始化操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 #include <iostream> #include <mutex> #include <thread> std::once_flag flag1, flag2; void simple_do_once () { std::call_once (flag1, [](){ std::cout << "简单样例:调用一次\n" ; }); } void may_throw_function (bool do_throw) { if (do_throw) { std::cout << "抛出:call_once 会重试\n" ; throw std::exception (); } std::cout << "没有抛出,call_once 不会再重试\n" ; } void do_once (bool do_throw) { try { std::call_once (flag2, may_throw_function, do_throw); } catch (...) {} } int main () { std::thread st1 (simple_do_once) ; std::thread st2 (simple_do_once) ; std::thread st3 (simple_do_once) ; std::thread st4 (simple_do_once) ; st1.join (); st2.join (); st3.join (); st4.join (); std::thread t1 (do_once, true ) ; std::thread t2 (do_once, true ) ; std::thread t3 (do_once, false ) ; std::thread t4 (do_once, true ) ; t1.join (); t2.join (); t3.join (); t4.join (); }
原文链接: https://kettycode.github.io/2024/02/06/cpp/并发编程/mutex/
版权声明: 转载请注明出处.