C++ 线程库 - 函数 operator=



描述

它用于移动赋值线程。

声明

以下是 std::thread::operator= 函数的声明。

thread& operator= (thread&& rhs) noexcept;	
thread& operator= (const thread&) = delete;

C++11

thread& operator= (thread&& rhs) noexcept;	
thread& operator= (const thread&) = delete;

参数

rhs − 它是一个线程对象。

返回值

它返回 *this。

异常

无抛出保证 − 从不抛出异常。

数据竞争

rhs 和对象都被修改。

thread.htm
广告