c – 为什么cerr刷新cout的缓冲区

前端之家收集整理的这篇文章主要介绍了c – 为什么cerr刷新cout的缓冲区前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <iostream>
using std::cout;
using std::endl;
using std::cerr;
#include <cstdio>

int   main( )
{
    char pbuffer[BUFSIZ];
    setbuf(stdout,pbuffer);
    cout << "hello cout" ;
    sleep(5);
    cerr << "hello cerr";
    sleep(5);
    cout << "\nAll   done " << endl;
    sleep(5);
    return 0;
}

在我编译并运行上面的程序之后,它的输出是:

hello couthello cerr
All   done

但我认为它应该是:

hello cerrhello cout
All   done

我想知道,为什么cerr刷新cout的缓冲区?

解决方法

这是设计的.

cin和cerr都绑定到cout,并在任何自己的操作之前调用cout.flush().

这个想法可能是输入和输出应该以正确的顺序发生.

原文链接:https://www.f2er.com/c/119881.html

猜你在找的C&C++相关文章