为了账号安全,请及时绑定邮箱和手机立即绑定

我无法冲洗stdin

我无法冲洗stdin

C
小唯快跑啊 2019-07-24 20:50:33
我无法冲洗stdin如何刷新stdin?为什么它不能在以下代码片段中工作?#include <string.h>#include <stdio.h>#include <malloc.h>#include <fcntl.h>int main(){         int i=0,j=0, sat;         char arg[256];         char * argq;         argq = malloc(sizeof(char)*10);         printf("Input the line\n");         i=read(0, arg, sizeof(char)*9);         arg[i-1]='\0';         fflush(stdin);         i=read(0, argq, sizeof(char)*5);         argq[i-1]='\0';         puts(arg);         puts(argq);         return 0;}现在,如果我将输入作为11个字符,则只应读取9个,但是stdin中剩余的两个字符不会被刷新并在argq中再次读取。为什么?输入:123 456 789产出:123 456 89为什么我将这89作为输出?
查看完整描述

3 回答

?
慕盖茨4494581

TA贡献1850条经验 获得超11个赞

我相信fflush仅用于输出流。

您可以在Linux上尝试fpurge__fpurge。请注意,fpurge是非标准的,不可移植。它可能无法使用。

Linux fpurge手册页:通常想要丢弃输入缓冲区是错误的。

用于刷新stdin的最便携式解决方案可能与以下内容类似:

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


查看完整回答
反对 回复 2019-07-24
?
噜噜哒

TA贡献1784条经验 获得超7个赞

如何刷新stdin?

刷新输入流正在调用未定义的行为。不要试试。

您只能刷新输出流。


查看完整回答
反对 回复 2019-07-24
  • 3 回答
  • 0 关注
  • 419 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信