public member function
<fstream>

std::basic_fstream::operator=

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

参数

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

返回值

*this

数据竞争

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

异常安全

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

另见