命名空间
变体
操作

std::basic_fstream<CharT,Traits>::swap

来自 cppreference.com
< cpp‎ | io‎ | basic fstream
void swap( basic_fstream& other );
(自 C++11 起)

将流的状态与 other 的状态交换。

这是通过调用 basic_iostream<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> 的公有成员函数) [编辑]