std::promise::operator=
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
promise& operator=( promise&& other ); |
(1) | (C++11 起) |
promise& operator=( const promise& rhs ) = delete; |
(2) | (C++11 起) |
。分配的内容.....
1)
。将赋值运算符。分配的共享状态
other
使用移动语义。 other
是有效的,但不确定的状态之后.原文:
Move assignment operator. Assigns the shared state of
other
using move semantics. other
is in valid, but undefined state afterwards.2)
。
promise
是复制指定的。[编辑] 。参数。
other | - | 。另一个
promise 从收购的状态。原文: another promise to acquire the state from |
===。 返回值。=== *this
[编辑] 。例外。
1)