打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
fflush函数有什么作用?
userphoto

2017.11.17

关注
先来复习一个简单单词吧:
flush(注意只有一个f):冲洗,冲刷,冲掉。  例句:I flushed the toilet and went back to work again.
下面,我们来看看一个简单的函数:fflush(file flush,注意有两个f), 先来看一个简单的程序:
[cpp] view plain copy
#include <stdio.h>
int main()
{
char c;
scanf("%c", &c);
printf("%d\n", c);
scanf("%c", &c);
printf("%d\n", c);
return 0;
}
运行这个程序,输入1, 并按enter键,结果为:
49
10
不用吃惊,这个结果很正常的,字符1对应的ASCII值刚好为49, enter键对应的ASCII值为10, 所以就有这样的结果呢。可以看出,第二个scanf函数执行了,并从缓冲区中得到了值(其实,这个值不是我们想要的),那么我们如何把缓冲区这个“马桶”里面的值冲掉呢?用fflush函数就可以了。如下:
[cpp] view plain copy
#include <stdio.h>
int main()
{
char c;
scanf("%c", &c);
printf("%d\n", c);
fflush(stdin); // 冲掉“马桶”中的无用值
scanf("%c", &c);
printf("%d\n", c);
return 0;
}
这样,就不会显示10了。
下面,我们来看MSDN(2008)的一个例子(MSDN上给的程序当然是对的啊):
[cpp] view plain copy
#include <stdio.h>
#include <conio.h>
void main( void )
{
int integer;
char string[81];
/* Read each word as a string. */
printf( "Enter a sentence of four words with scanf: " );
for( integer = 0; integer < 4; integer++ )
{
scanf( "%s", string );
printf( "%s\n", string );
}
/* You must flush the input buffer before using gets. */
fflush( stdin );
printf( "Enter the same sentence with gets: " );
gets( string );
printf( "%s\n", string );
}
要是不信那个邪,你把上面程序中的fflush那一行注释掉,运行一下程序,你就知道有什么后果了。从而,你也就懂了fflush的作用。
最后,我们看看MSDN中一段话,以此结束本文:
fflush has no effect on an unbuffered stream.
Buffers are normally maintained by the operating system, which determines the optimal time to write the data automatically to disk: when a buffer is full, when a stream is closed, or when a program terminates normally without closing the stream.
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
linux 下连续使用多个scanf() 的问题和 fflush(stdin)的变通处理
字符串转换为数值的库函数
c语言中fflush(stdin)作用(转)
c语言输入输出缓冲区的概念_仙剑系列
C语言猜拳游戏代码及分析
C语言scanf函数详细解释
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服