std::swap(std::basic_fstream)
来自 cppreference.com
< cpp | io | basic fstream
template< class CharT, class Traits > void swap( basic_fstream<CharT, Traits>& lhs, basic_fstream<CharT, Traits>& rhs ); |
||
为 std::swap 算法专门化 std::basic_fstream。交换 lhs 的状态与 rhs 的状态。实际上调用了 lhs.swap(rhs).
内容 |
[编辑] 参数
lhs, rhs | - | 要交换其状态的流 |
[编辑] 返回值
(无)
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <fstream> #include <iostream> #include <string> bool create_stream(std::fstream& fs) { try { std::string some_name = "/tmp/test_file.txt"; std::ios_base::openmode some_flags = fs.trunc; // | other flags if (std::fstream ts{some_name, some_flags}; ts.is_open()) { std::swap(ts, fs); // stream objects are not copyable => swap return true; } } catch (...) { std::cout << "Exception!\n"; } return false; } int main() { if (std::fstream fs; create_stream(fs)) { // use fs stream } }
[编辑] 参见
(C++11) |
交换两个文件流 (公有成员函数) |