那是因为strlen
你的缓冲区可能为零。您应该sizeof
改用它,它为您提供数组的大小(1024),而不是它包含的字符串的长度(此处不确定)。
在您的特定情况下,它可能是一个大小为零的字符串 ( *buf == '\0'
),因为fgets
调用根本没有阻塞。实际上,它的长度也可以为 1,因为标准规定:
fgets 函数从 stream 指向的流中最多读取比 n 指定的字符数少 1 的字符到 s 指向的数组中。在换行符(保留)之后或文件结尾之后不会读取其他字符。在读入数组的最后一个字符之后立即写入一个空字符。
实际上,作为尚未初始化的局部变量,buf
可能包含任何内容,因此您不明智地依赖它(如果它根本不包含空终止符,您甚至可能会发现自己在strlen
运行时转储核心结束)。
如果您想要一个久经考验的真实输入功能,请参见此处。它具有缓冲区溢出保护,提示,在末尾删除换行符,并在它太长的情况下清除剩余的行。我将复制下面的代码以使这个答案更加独立。
#include <stdio.h>
#include <string.h>
#define OK 0
#define NO_INPUT 1
#define TOO_LONG 2
static int getLine (char *prmpt, char *buff, size_t sz) {
int ch, extra;
// Get line with buffer overrun protection.
if (prmpt != NULL) {
printf ("%s", prmpt);
fflush (stdout);
}
if (fgets (buff, sz, stdin) == NULL)
return NO_INPUT;
// If it was too long, there'll be no newline. In that case, we flush
// to end of line so that excess doesn't affect the next call.
if (buff[strlen(buff)-1] != '\n') {
extra = 0;
while (((ch = getchar()) != '\n') && (ch != EOF))
extra = 1;
return (extra == 1) ? TOO_LONG : OK;
}
// Otherwise remove newline and give string back to caller.
buff[strlen(buff)-1] = '\0';
return OK;
}