码迷,mamicode.com
首页 > 其他好文 > 详细

非缓冲 和 全缓冲

时间:2015-05-26 20:48:52      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

非缓冲 和 全缓冲
非缓冲:不需要flush函数刷新,直接从缓冲区自动补上了

#include<stdio.h>
#include<stdlib.h>

int main(){
       printf( "%d\n", *(stdin ->_ptr)); //打印换成区内容  \0 -> 0
       printf( "%d\n", stdin ->_cnt);//缓冲区还有多少个字节
       char ch = getchar();        //输入123 会把1提走 缓冲区剩余23 注意缓冲区大小为3 因为末尾有回车\n
       printf( "%p\n", stdin ->_ptr);
       printf( "%c\n", *(stdin ->_ptr));
       printf( "%d\n", stdin ->_cnt);
       char ch2 = getchar();       //会把2提走 缓冲区剩余3 注意缓冲区大小为2 因为末尾有回车\n
       printf( "%p\n", stdin ->_ptr);
       printf( "%c\n", *(stdin ->_ptr));
       printf( "%d\n", stdin ->_cnt);
       system( "pause");
       return 0;
}

技术分享


全缓冲:读取文件的时候,需要flush函数刷新










非缓冲 和 全缓冲

标签:

原文地址:http://www.cnblogs.com/ZhangJinkun/p/4531468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!