我正在学习 C 编程语言。
在下面的代码中
#include <ctype.h>
int getch(void);
void ungetch(int);
int getop(char s[])
{
int i, c;
while((s[0] = c = getch()) == ' ' || c == '\t')
;
s[1] = '\0';
if(!isdigit(c) && c != '.')
return c;
i = 0;
if (isdigit(c))
while (isdigit(s[++i] = c = getch())) ;
if(c == '.')
while (isdigit(s[++i] = c = getch())) ;
s[i] = '\0';
if(c != EOF)
ungetch(c);
return NUMBER;
}
#define BUFSIZE 100
char buf[BUFSIZE];
int bufp = 0;
int getch(void)
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c)
{
if (bufp >= BUFSIZE)
printf("ungetch: too many characters\n");
else
buf[bufp++] = c;
}
我认为声明if(c != EOF)
是getop()
不必要的。
在标准输入中,每一行由零个或多个字符组成,后跟一个换行符。
当语句执行时,c 获取的内容跟在数字字符或 a.
之后,在这种情况下 c 可以是换行符或除 之外的其他字符EOF
。
很明显,这c
并非EOF
没有经过测试。
是if(c != EOF)
用来做什么的?
对不起,如果这是一个微不足道的问题。提前致谢。