C++ 线程库 - 函数运算符=


描述

它用于移动分配线程。

宣言

以下是 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 - 它是一个 othread 对象。

返回值

它返回*this。

例外情况

无抛出保证- 永远不会抛出异常。

数据竞赛

rhs 和对象都被修改。

线程.htm