public member function
<fstream>

std::ifstream::operator=

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

参数

rhs
Another ifstream object.

返回值

*this

数据竞争

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

异常安全

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

另见