zoukankan      html  css  js  c++  java
  • 缓冲思想

           缓冲是计算机领域非常常见的一种思想。其主要目的是为了平衡设备之间的能力差异。从硬件到软件,缓冲思想无处不在。

           CPU的Cache,绘图时的双缓冲方法等等都是缓冲的具体实践。

    C语言中的fflush(FILE      *stream)函数。

    fflush(stdin)刷新标准输入缓冲区,把输入缓冲区里的东西丢弃

       fflush(stdout)刷新标准输出缓冲区,把输出缓冲区里的东西打印到标准输出设备上。

    下面的程序从不停地从键盘读取数据到int data中,同时显示data的值。

    #include <stdio.h>

    int main()

    {

             int data = 0;

             while(1){

                       scanf("%d", &data);

                       printf("%d\n", data);

             }

             return 0;

    }

    输入整数时不会出现异常,但是当用户输入字母时(例如a),a就在缓冲区中始终无法被读取,而因为缓冲区中有数据,scanf()就不会等待用户的输入,因此造成了死循环。

    在scanf()后加上fflush(stdin)即可解决问题。

    #include <stdio.h>

    int main()

    {

             int data = 0;

             while(1){

                       scanf("%d", &data);

                       printf("%d\n", data);

                       fflush(stdin);

             }

             return 0;

    }

           同时也可以自己写代码来替代fflush(stdin)的功能:

    #include <stdio.h>

    int main()

    {

             int data = 0;

             int flag;

             while(1){

                       scanf("%d", &data);

                       printf("%d\n", data);

                       //fflush(stdin);

                       while((c = getchar()) != '\n' && c !=EOF)

                                ;

             }

             return 0;

    }

  • 相关阅读:
    vue-lazy-component
    vue修饰符sync
    vue-router-auto动态生成路由插件
    我的第一个WebAPI程序
    GitHub界面初识
    新闻API接口
    childNodes属性 和 nodeType属性
    接口测试总结
    网站被k
    js声明引入和变量声明和变量类型、变量
  • 原文地址:https://www.cnblogs.com/johnpher/p/2570647.html
Copyright © 2011-2022 走看看