| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2424 人关注过本帖
标题:Windows下和Linux下的fflush的区别
取消只看楼主 加入收藏
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
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
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
收藏
得分:0 
回复 2楼 zklhp
那如何才能实现刷新输入缓冲呢?
2012-10-11 16:26
liugepk44pk
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-10-19
收藏
得分:0 
回复 4楼 zklhp
多谢
2012-10-11 17:11
快速回复:Windows下和Linux下的fflush的区别
数据加载中...
 
   



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

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