std::basic_ifstream<CharT,Traits>::operator=
来自 cppreference.cn
< cpp | io | basic ifstream
basic_ifstream& operator=( basic_ifstream&& other ); |
(C++11 起) | |
将文件流 other 移动赋值给 *this,有效地同时移动赋值 std::basic_istream 基类和关联的 std::basic_filebuf。
other 将不再关联任何文件。注意,基类移动赋值会交换 *this 和 other 之间所有流状态变量(除了 rdbuf)。
目录 |
[编辑] 参数
其他 | - | 要移动的文件流 |
[编辑] 返回值
*this
[编辑] 示例
本节不完整 原因:无示例 |
[编辑] 参阅
(C++11) |
交换两个文件流 (public 成员函数) |
(C++11) |
赋值一个 basic_filebuf 对象( std::basic_filebuf<CharT,Traits> 的 public 成员函数) |
(C++11) |
从另一个 basic_istream 移动赋值(protected 成员函数) |