我正在看K&R中的1.9节,我不明白下面实现的代码中EOF的用法
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */
int mymygetline(char line[], int maxline);
void copy(char to[], char from[]);
/* print the longest input line */
int main()
{
int len; /* current line length */
int max; /* maximum length seen so far */
char line[MAXLINE]; /* current input line */
char longest[MAXLINE]; /* longest line saved here */
max = 0;
while ((len = mymygetline(line, MAXLINE)) > 0) {
if (len > max) {
max = len;
copy(longest, line);
}
}
if (max > 0) /* there was a line */
printf("%s", longest);
return 0;
}
/* mymygetline: read a line into s, return length */
int mymygetline(char s[], int lim)
{
int c, i;
for (i = 0; i < lim - 1 && (c = getchar()) != EOF && c != '\n'; ++i)
s[i] = c;
if (c == '\n') {
s[i] = c;
++i;
}
s[i] = '\0';
return i;
}
/* copy: copy 'from' into 'to'; assume to is big enough */
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}
字符串
我尝试的是:
- 初始程序运行良好,输入标记为“\n”的差异行易于理解
- 当我第一次尝试输入EOF时,它只是结束最近的输入流,并将getchar()设置为等待输入流的模式。
问:
- 当我输入EOF两次内联,第一个EOF只是像一个“\n”或其他一些机制,或者我只是错过了一些东西在这里。
1条答案
按热度按时间qco9c6ql1#
以下是按键如何传播到代码(mymygetline())函数:
如果用户按下Ctrl-D,read(2)返回到目前为止缓冲的字节(如果有的话),随后的read(2)(由第二个Ctrl-D 触发)返回0,这导致getchar(3)返回EOF。