CppDS.com

C++ 98 11 14 17 20 手册

std::promise<R>::operator=

来自cppreference.com
< cpp‎ | thread‎ | promise
 
 
线程支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
future
(C++11)
(C++11)
(C++11)
(C++11)
 
 
promise& operator=( promise&& other ) noexcept;
(1) (C++11 起)
promise& operator=( const promise& rhs ) = delete;
(2) (C++11 起)

赋值内容。

1) 移动赋值运算符。首先,抛弃共享状态(如在 ~promise() 中),然后如同以执行 std::promise(std::move(other)).swap(*this) 对共享状态赋值。
2) std::promise 不可复制赋值。

参数

other - 另一 std::promise 对象,为获取状态的来源

返回值

*this

关闭