std::swap(std::basic_ofstream)
来自 cppreference.com
< cpp | io | basic ofstream
template< class CharT, class Traits > void swap( basic_ofstream<CharT, Traits>& lhs, basic_ofstream<CharT, Traits>& rhs ); |
||
专门为 std::swap 算法提供 std::basic_ofstream。将 lhs 的状态与 rhs 的状态交换。实际上调用了 lhs.swap(rhs).
内容 |
[编辑] 参数
lhs, rhs | - | 要交换状态的流 |
[编辑] 返回值
(无)
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <fstream> #include <iostream> #include <string> bool create_stream(std::ofstream& fs) { try { std::string some_name = "/tmp/test_file.txt"; std::ios_base::openmode some_flags = fs.trunc; // | other flags if (std::ofstream 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::ofstream fs; create_stream(fs)) { // use fs stream } }
[编辑] 另请参阅
(C++11) |
交换两个文件流 (公有成员函数) |