3

我有 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
4

2 回答 2

1

试试std::cerr.unsetf( std::ios_base::unitbuf );cerr默认情况下,该标志处于打开状态。

于 2010-11-25T10:53:31.403 回答
1

ios::unitbuf 标志是 cerr 设置为默认值的原因。

您需要使用 nounitbuf 操纵器来修复它。一些较旧的库可能没有它,如果有,请使用 unsetf。

编辑:unitbuf 的默认设置取决于实现:)

于 2010-11-25T10:54:30.317 回答