受保护的成员函数
<ostream> <iostream>

std::basic_ostream::operator=

复制 (1)
basic_ostream& operator= (const basic_ostream&) = delete;
移动 (2)
basic_ostream& operator= (basic_ostream&& rhs);
移动赋值
交换 rhs*this 的所有内部成员,除了指向关联的流缓冲区的指针:在调用之前,rdbuf 在两个对象中都应返回相同的值。

此行为与调用成员函数 basic_ostream::swap 相同。

派生类可以调用此函数来实现移动语义。

参数

rhs
另一个具有相同模板参数(charTtraits)的 basic_ostream 对象。

返回值

*this

数据竞争

修改两个流对象(*thisrhs)。

异常安全

无异常保证:此成员函数从不抛出异常。

另见