从stdin读取文本文件在最后一行停止

时间:2016-09-04 18:34:10

标签: c stdin eof feof

我写了一个简短的程序来测试从stdin读取文本文件:

int main(){
    char c;

    while(!feof(stdin)){

        c = getchar();       //on last iteration, this returns '\n'

        if(!isspace(c))      //so this is false
            putchar(c);

        //remove spaces
        while (!feof(stdin) && isspace(c)){    //and this is true
                c = getchar();  //      <-- stops here after last \n
                if(!isspace(c)){
                    ungetc(c, stdin);
                    putchar('\n');
                }
        }
    }
    return 0;
}

然后我传递了一个小文本文件:

jimmy   8
phil    6
joey    7

最后一行(joey 7)以\n字符结尾。

我的问题是,在读取并打印最后一行之后,然后循环返回以检查更多输入,没有更多字符要读取,它只是停在代码块中注明的行。

问题:feof()返回true的唯一方法是在读取失败后,如下所示:Detecting EOF in C。为什么最后调用getchar不会触发EOF?如何才能更好地处理此事件?

1 个答案:

答案 0 :(得分:2)

您的代码中存在多个问题:

  • 您不包括<stdio.h>,也不包括<ctype.h>,或者至少您没有发布完整的源代码。
  • 您使用feof()检查文件结尾。这几乎从来都不是正确的方法,正如Why is “while ( !feof (file) )” always wrong?
  • 所强调的那样
  • 您在char变量中读取流中的字节。这会阻止EOF的正确测试,并导致isspace(c)的未定义行为。将类型更改为int

以下是改进版本:

#include <stdio.h>

int main(void) {
    int c;

    while ((c = getchar()) != EOF) {
        if (!isspace(c)) {
            putchar(c);
        } else {
            //remove spaces
            while ((c = getchar()) != EOF && isspace(c)) {
                continue;  // just ignore extra spaces
            }
            putchar('\n');
            if (c == EOF)
                break;
            ungetc(c, stdin);
        }
    }
    return 0;
}

虽然使用ungetc()的方法在功能上是正确的,但最好以这种方式使用辅助变量:

#include <stdio.h>
#include <ctype.h>

int main(void) {
    int c, last;

    for (last = '\n'; ((c = getchar()) != EOF; last = c) {
        if (!isspace(c)) {
            putchar(c);
        } else
        if (!isspace(last))
            putchar('\n');
        }
    }
    return 0;
}