std::unique_lock::operator=
来自cppreference.com
< cpp | thread | unique lock
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
unique_lock& operator=( unique_lock&& other ); |
(C++11 起) | |
将赋值运算符。的
other
使用移动语义的内容替换. 原文:
Move assignment operator. Replaces the contents with those of
other
using move semantics. 如果呼叫*this之前都有一个关联的互斥并且已取得它的所有权,互斥量被释放.
原文:
If prior to the call *this has an associated mutex and has acquired ownership of it, the mutex is unlocked.
[编辑] 参数
other | - | 另一个
unique_lock 更换状态原文: another unique_lock to replace the state with |
[编辑] 返回值
*this