std::shared_lock<Mutex>::operator=
来自 cppreference.com
< cpp | thread | shared lock
shared_lock& operator=( shared_lock&& other ) noexcept; |
(自 C++14 起) | |
移动赋值运算符。使用移动语义将内容替换为 other 的内容。
如果在此调用之前,*this 与一个关联的互斥体有关((mutex() 返回一个非空指针)并且已获取其所有权(owns() 返回 true),则通过调用 unlock_shared() 来解锁互斥体。
在此调用之后,other 将不再与任何互斥体有关。
[编辑] 参数
other | - | 另一个要将状态替换为的 shared_lock |
[编辑] 返回值
*this