gpt4 book ai didi

c - 在 Visual Studio 2012 中使用 sscanf_s 时出错

转载 作者:太空宇宙 更新时间:2023-11-04 07:07:16 25 4
gpt4 key购买 nike

我正在尝试解析以下字符串 - "DATA,97,103,100,97,84,69"。该字符串可以有以下变体-

"DATA,100,10,1,9,82,60"
"DATA,57,27,59,30,11,64"
"DATA,12,86,100,97,103,23"
"DATA,1,10,78,38,45,52"
"DATA,99,43,85,28,84,26"

请注意,第一个 "DATA," 永远不会改变。剩余的整数从 0 到 200 不等。下面是使用 sscanf_s 函数解析这些字符串的代码-

char ignore_data[5];
int x1,x2,x3,y1,y2,y3;
char str[]="DATA,97,103,100,97,84,69";

sscanf_s(str,"%5[^,],%d,%d,%d,%d,%d,%d", ignore_data, &x1, &x2, &x3, &y1, &y2, &y3);
printf("str=%s, x1=%d, x2=%d, x3=%d, x1=%d, y2=%d, y3=%d",str, x1, x2, x3, y1, y2,y3);

代码不工作并显示以下错误

Unhandled exception at 0x510A06E4 (msvcr110d.dll) in My Application.exe: 0xC0000005: Access violation writing location 0x00870000.

sscanf()#define _CRT_SECURE_NO_WARNINGS 预处理器一起使用时,上述代码可以完美运行。

我想获取x1x2x3y1y2的值y3。我在这里缺少什么?

最佳答案

我发现如果您能够执行以下操作,您应该能够获得所需的结果:

#include <stdio.h>

int main()
{
char ignore_data[5];
int x1, x2, x3, y1, y2, y3;
char str[] = "DATA,97,103,100,97,84,69";

sscanf_s(str, "%5[^,],%d,%d,%d,%d,%d,%d", ignore_data, sizeof(ignore_data), &x1, &x2, &x3, &y1, &y2, &y3);
printf("str=%s, x1=%d, x2=%d, x3=%d, x1=%d, y2=%d, y3=%d", str, x1, x2, x3, y1, y2, y3);

return 0;
}

对于sscanf_s,当接收一个字符串时,在扫描数据后您将立即需要目标缓冲区的大小。这有助于在输入流(无论是什么)与目的地之间建立一个安全端口,减少接受字符串时缓冲区溢出的可能性。

编辑:

正如 Cremno 指出的那样,它需要是 sscanf_s(str, "%5[^,],%d,%d,%d,%d,%d,% d", ignore_data, (unsigned)sizeof(ignore_data), &x1, &x2, &x3, &y1, &y2, &y3);

注意 sizeof(ignore data) 应该返回一个无符号值。

关于c - 在 Visual Studio 2012 中使用 sscanf_s 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31603763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com