标题:Windows下和Linux下的fflush的区别
只看楼主
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
结帖率:100%
已结贴  问题点数:20 回复次数:4 
Windows下和Linux下的fflush的区别
如下程序: (MSDN的fflush函数的例子)
    #include <stdio.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 );
    }
   
    上述程序在Windows下运行得到预期结果:
    Enter a sentence of four words with scanf: This is a test(回车)
        This
        is
        a
        test
        Enter the same sentence with gets: This is a test(回车)
        This is a test
   
    但是在Linux(Ubuntu 12)下第一个回车后程序正确输出4个单词,但然后显示"Enter the same sentence with gets:" 后便直接退出:
   
    Enter a sentence of four words with scanf: This is a test
        This
        is
        a
        test
        Enter the sane sentence with gets:
        ubuntu@ubuntu-VM:~/Desktop/workspace/strean$
        
        谁能告诉我,为什么Linux下的fflush不起作用呢?
搜索更多相关主题的帖子: before include Windows void 
2012-10-11 16:18
zklhp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:china
等 级:贵宾
威 望:254
帖 子:11485
专家分:33241
注 册:2007-7-10
得分:0 
fflush( stdin );

这个东西本来是用于输出的 所以linux下不好使 windows下扩展了这个函数的用法 所以可以用于stdin

因此 linux下不能用

至于这个扩展好不好呢 见仁见智 不知道各位大牛怎么看
2012-10-11 16:21
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
得分:0 
回复 2楼 zklhp
那如何才能实现刷新输入缓冲呢?
2012-10-11 16:26
zklhp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:china
等 级:贵宾
威 望:254
帖 子:11485
专家分:33241
注 册:2007-7-10
得分:20 
谷歌一下你就知道

http://
2012-10-11 16:49
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
得分:0 
回复 4楼 zklhp
多谢
2012-10-11 17:11



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-382918-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.082271 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved