std::lock_guard
用于托管一个mutex 变量,负责对齐加锁解锁。
A lock guard is an object that manages a mutex object by keeping it always locked.
On construction, the mutex object is locked by the calling thread, and on destruction, the mutex is unlocked. It is the simplest lock, and is specially useful as an object with automatic duration that lasts until the end of its context. In this way, it guarantees the mutex object is properly unlocked in case an exception is thrown.
Note though that the lock_guard object does not manage the lifetime of the mutex object in any way: the duration of the mutex object shall extend at least until the destruction of the lock_guard that locks it.
MyNote:
@ 有变量std::mutex myMutex; 需要用其保护一段critical section, 则需要在前后使用myMutex.lock(), myMutex.unlock()函数。缺点是lock和unlock需要成对出现,如果critical section出现异常,则后面的unlock不会执行了,容易导致死锁。使用std::lock_gard<mutex> myLockGuard(myMutex) , (lock_guard的构造函数将myMutex上锁), 可以以并解决这些个缺点。
@ lock_guard object does not manage the lifetime of the mutex object in any way。 lock_guard的析构函数调用时,会unLock其托管的mutex变量,如果这时该变量已经消失了那就没有意义了。故,lock_guard保存的是其托管的mutex对象的引用/地址吧。
std::unique_lock
A unique lock is an object that manages a m