gpt4 book ai didi

c++ - 重置 ostream,C++

转载 作者:太空狗 更新时间:2023-10-29 22:52:25 29 4
gpt4 key购买 nike

我有 2 个不同的 ostream,其中一个是 cerr,使用相同的流缓冲区,我有一些库可能以某种方式修改了 cerr,(标志?格式修饰符?)。

cerr.rdbuf(&mystreambuffer);
ostream teststream(&mystreambuffer);

cerr << "This " << " is " << " a " << " test";
teststream << "This " << " is " << " a teststream " << " test";

打印:

This
is
a
test
This is a teststream test

调试 mystreambuffer我注意到 cerr 调用了 mystreambuffer->sync()每个<<操作,而 teststream 根本不调用它。
如果我是对的cerr只是一个标准的 ostream,那么,为什么我会在冲洗时间上看到这种差异?如何将 cerr 重置为正常的刷新操作?

编辑:我看到你们在评论 unitbuf 并且它在 cerr 中是默认的,但是如果它是默认的,它不会也在这里写一步一步吗?

#include <iostream>
int main(){
std::cerr << "This " << " is " << " a cerr " << " test\n";
std::cout << "This " << " is " << " a cout " << " test\n";
}
Cobain /tmp$ ./test
This is a cerr test
This is a cout test

最佳答案

尝试 std::cerr.unsetf( std::ios_base::unitbuf );。默认情况下,cerr 会启用该标志。

关于c++ - 重置 ostream,C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4276082/

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