gpt4 book ai didi

c++ - 在 C++ 中输出 ofstream 的 filebuf* 有什么作用?

转载 作者:行者123 更新时间:2023-11-30 01:49:39 25 4
gpt4 key购买 nike

带有 ifstream我们可以将整个文件输出到cout像这样:

std::ifstream foo("testfile");
std::cout << foo.rdbuf();

但是当我们尝试对 ofstream 做同样的事情时会发生什么? ?

std::ofstream foo("testfile", std::ios::app); // use app to avoid wiping out contents of testfile
std::cout << foo.rdbuf();

对我来说它不输出任何东西。

正在传递 filebuf*ofstreamstd::cout::operator<<只是一个没有实际用途的无用可能性?还是有什么我不知道的?

最佳答案

执行 operator <<streambuf 过载作为未格式化的数据插入,流缓冲区被拉取直到它到达eof,但是没有什么可以开始的,所以...

结果是将写入零个字符。根据标准 (C++14 § 27.7.3.6.3/9),在这种情况下,它会在目标输出流上设置失败位,并通过以下方式证明:

#include <iostream>
#include <fstream>
#include <iomanip>

int main()
{
std::ofstream foo("testfile", std::ios::app);
std::cerr << std::boolalpha << std::cout.fail() << '\n';
std::cout << foo.rdbuf();
std::cerr << std::boolalpha << std::cout.fail() << '\n';
}

输出

false
true

是的,在这种情况下它不仅没有用,它还渲染了目标 ostream在其故障状态为 clear() 之前无用编辑。

祝你好运。

关于c++ - 在 C++ 中输出 ofstream 的 filebuf* 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28713697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com