thread::operator= 运算符

关联指定对象的线程与当前对象。

thread& operator=(
   thread&& Other
) _NOEXCEPT;

参数

  • Other
    一个 thread 对象。

返回值

*this

备注

如果调用方法的对象 joinable,分离来调用。

在关联进行后,Other 将设置添加到默认构造的状态。

要求

标头: 线程

命名空间: std

请参见

参考

thread 类

<thread>