作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我看过各种关于在 fgets 之前使用 scanf 可能会导致问题的帖子。但是,对我来说,为什么在 AFTER 之后添加它会导致第一个语句中断,这是没有意义的。
这就是我所拥有的:
unsigned char key;
unsigned char message[100];
printf(" Please input a message \n ");
fgets(message, MAX_BUF, stdin);
printf("Your message is: %s \n", message);
// Read user input for message
printf(" Please input a numeric key\n ");
scanf("%d", &key);
printf("Your message is: %s \n", message);
printf("strlen(message) = %d \n", strlen(message));
这是一次“试运行”:
Please input a message
hello
Your message is: hello
Please input a numeric key
123
Your message is:
strlen(message) = 0
像这样,无论输入如何,消息变量最终都会为空。但是,如果我用 scanf 注释掉该行,则一切正常(除了我无法分配 key )。
救命!
最佳答案
scanf()
的 %d
格式说明符 promise 下一个参数是足够大以容纳 的内存缓冲区的地址int
(通常为 4 或 8 个字节),但您的 key
只是一个 1 字节的 unsigned char
,因此 scanf()
将在末尾写入 3 个(或者可能 7 个)字节,践踏占用该内存的任何内容 - 在本例中,很可能是消息
。它到底写入的内容取决于系统的字节序,但对于小字节序系统(例如 x86)上的小输入(<= 255),其第二个字节(将被写入 message 的第一个字节
)将为 0,这实际上以零长度以 null 终止消息
。
关于c - scanf AFTER fgets 破坏了 fgets 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26172078/
我是一名优秀的程序员,十分优秀!