std::basic_ofstream<CharT,Traits>::operator=
来自 cppreference.com
< cpp | io | basic ofstream
basic_ofstream& operator=( basic_ofstream&& other ); |
(自 C++11 起) | |
将文件流 other 移动赋值给 *this,实际上是将 std::basic_ostream 基类和关联的 std::basic_filebuf 都移动赋值。
other 将不再与任何文件关联。请注意,基类移动赋值会交换 *this 和 other 之间的全部流状态变量(rdbuf 除外)。
内容 |
[编辑] 参数
other | - | 要移动的文件流 |
[编辑] 返回值
*this
[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
交换两个文件流 (公有成员函数) |
(C++11) |
分配一个 basic_filebuf 对象( std::basic_filebuf<CharT,Traits> 的公有成员函数) |
(C++11) |
从另一个 basic_ostream 移动赋值(受保护成员函数) |