public member function
<fstream>

std::basic_ofstream::operator=

copy (1)
basic_ofstream& operator= (const basic_ofstream&) = delete;
move (2)
basic_ofstream& operator= (basic_ofstream&& rhs);
移动赋值
获取rhs的内容,通过移动赋值其成员和基类。

参数

rhs
Another basic_ofstream object of the same type (with the same template parameters charT and traits).

返回值

*this

数据竞争

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

异常安全

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

另见