std::shared_lock<Mutex>::release_C++中文网
mutex_type* release() noexcept;
打破关联互斥和 *this 的关联,若它存在。
没有锁被解锁。若 *this 在调用前曾保有关联互斥的所有权,则现在调用方为解锁互斥负责。
(无)
指向关联互斥的指针,或若无关联互斥则为 NULL 。
unlock
release
std::unique_lock<Mutex>