std::basic_iostream<CharT,Traits>::swap
来自 cppreference.com
< cpp | io | basic iostream
protected: void swap( basic_iostream& other ); |
(自 C++11 起) | |
与另一个输入/输出流对象交换状态。实际上调用 basic_istream<CharT,Traits>::swap(other).
该成员函数是受保护的:它由派生流类的 swap 成员函数调用,例如 std::basic_stringstream 和 std::basic_fstream,它们知道如何正确地交换关联的流缓冲区。
[编辑] 参数
other | - | 另一个要交换状态的流 |
[编辑] 返回值
*this