std::basic_ofstream<CharT,Traits>::swap
来自 cppreference.com
< cpp | io | basic ofstream
void swap( basic_ofstream& other ); |
(自 C++11 起) | |
交换流的状态与other的状态。
这是通过调用basic_ostream<CharT, Traits>::swap(other)和rdbuf()->swap(other.rdbuf())来完成的。
内容 |
[编辑] 参数
other | - | 要交换状态的流 |
[编辑] 返回值
(无)
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <fstream> #include <iomanip> #include <iostream> #include <string> bool create_stream(std::fstream& fs, const std::string& path) { try { std::fstream ts{path, ts.trunc | ts.in | ts.out}; if (ts.is_open()) { ts.swap(fs); // stream objects are not copyable return true; } } catch (...) { std::cout << "Exception!\n"; } return false; } void use_stream(std::fstream& fs) { fs.seekg(0); std::string data; fs >> data; std::cout << "data: " << std::quoted(data) << '\n'; } int main() { std::fstream fs; std::string path = "/tmp/test_file.txt"; if (create_stream(fs, path)) { fs.write(path.c_str(), path.length()); use_stream(fs); } }
可能的输出
data: "/tmp/test_file.txt"
[编辑] 参见
(C++11) |
移动文件流 (公有成员函数) |
(C++11) |
交换两个 basic_filebuf 对象( std::basic_filebuf<CharT,Traits> 的公有成员函数) |