fputs 和循环的奇怪行为
运行以下代码时,我没有得到任何输出,但我无法找出原因。
# include <stdio.h>
int main()
{
fputs("hello", stdout);
while (1);
return 0;
}
如果没有 while 循环,它可以完美工作,但是一旦我添加它,我就得不到任何输出。它肯定应该在开始循环之前输出吗?只在我的系统上吗?我是否必须刷新某种缓冲区或其他东西?
提前致谢。
When running the following code I get no output but I cannot work out why.
# include <stdio.h>
int main()
{
fputs("hello", stdout);
while (1);
return 0;
}
Without the while loop it works perfectly but as soon as I add it in I get no output. Surely it should output before starting the loop? Is it just on my system? Do I have to flush some sort of buffer or something?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须刷新
stdout
。当您写入换行符时,这种情况会自动发生。将fputs
更改为:或者更改为:
You have to flush
stdout
. This happens automatically when you write a newline character. Change thefputs
to:Or to:
我想问这个问题帮助我找到了解决方案。需要使用 fflush(..)
http://www 进行刷新.thinkage.ca/english/gcos/expl/c/lib/fflush.html
I guess asking the question helped me find the solution. Flushing is required with fflush(..)
http://www.thinkage.ca/english/gcos/expl/c/lib/fflush.html
fflush(stdout);
fflush(stdout);
为什么应该这样? stdio 函数不知道外部发生了什么,并且肯定不会知道无限循环即将到来。仅当缓冲区已满或明确请求时才会刷新缓冲区。
Why should it? The stdio functions doesn't know what's happening outside, and surely won't know an infinite loop is coming. The buffer will be flushed only when it is full or explicitly requested.