std::basic_filebuf::swap
来自cppreference.com
< cpp | io | basic filebuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void swap( std::basic_filebuf& rhs ) |
(C++11 起) | |
交换的状态和内容*this和
rhs
.原文:
Swaps the state and the contents of *this and
rhs
.目录 |
[编辑] 参数
rhs | - | 另一个
basic_filebuf |
[编辑] 返回值
(无)
[编辑] 注释
此功能称为自动交换std::fstream对象时,很少需要直接调用它.
原文:
This function is called automatically when swapping std::fstream objects, it is rarely necessary to call it directly.
[编辑] 示例
#include <fstream> #include <string> #include <iostream> int main() { std::ifstream fin("test.in"); // read-only std::ofstream fout("test.out"); // write-only std::string s; getline(fin, s); std::cout << s << '\n'; // outputs the first line of test.in fin.rdbuf()->swap(*fout.rdbuf()); //swap the underlying buffers getline(fin, s); // fails: cannot read from a write-only filebuf std::cout << s << '\n'; // prints empty line }
[编辑] 另请参阅
(C++11) |
分配一个basic_filebuf的对象 (公共成员函数) |
专业的std::swap算法 (函数模板) | |
(C++11) |
交换两个文件流 (公共成员函数of std::basic_fstream )
|