在C中自动刷新stdout缓冲区的规则是什么?

我只是好奇应该满足哪些条件自动刷新stdout缓冲区.

首先,我很困惑这个伪代码不会在每次迭代时打印输出

while (1) {
    printf("Any text");
    sleep(1);
}

但如果我添加换行符,它会.

经过几次实验,我发现在我的机器上stdout缓冲区被刷新:

>当我输入1025个字符或更多字符时;
>当我读到标准时;
>当我将换行符添加到stdout时;

一个条件是完全清楚的 – 当缓冲区已满时,应该刷新它.第二个也是合理的.但为什么换行符导致潮红?其他隐含条件是什么?

解决方法

自动刷新标准输出缓冲区的规则是实现定义的(ID).当流是无缓冲,完全缓冲或行缓冲时,它是ID.

When a stream is unbuffered,characters are intended to appear from the source or at the destination as soon as possible. Otherwise characters may be accumulated and transmitted to or from the host environment as a block.

When a stream is fully buffered,characters are intended to be transmitted to or from the host environment as a block when a buffer is filled.

When a stream is line buffered,characters are intended to be transmitted to or from the host environment as a block when a new-line character is encountered. Furthermore,characters are intended to be transmitted as a block to the host environment when a buffer is filled,when input is requested on an unbuffered stream,or when input is requested on a line buffered stream that requires the transmission of characters from the host environment.

Support for these characteristics is implementation-defined,… C11dr §7.21.3 3

I’m just curIoUs which conditions should be satisfied to flush stdout buffer automatically.

如果代码想确保输出肯定是刷新的,请使用fflush().可以自动刷新流的其他条件是实现定义的.

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...