避免“缓冲区溢出” C6386 警告

发布于 2024-09-04 20:40:39 字数 234 浏览 6 评论 0原文

在我的代码中,我使用包含 10 个对象的数组 xyz。当我尝试使用像这样的无符号整型索引访问数组的元素时:xyz[level],我得到'缓冲区溢出'警告。从逻辑上讲,我很确定该级别不会超过 10。如何避免此警告?

In my code, I am using an array xyz of 10 objects. When I am trying to access an element of the array using an unsigned int index like this: xyz[level], I get 'Buffer overrun' warning. Logically, I am pretty sure that level won't exceed 10. How to avoid this warning?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

草莓酥 2024-09-11 20:40:39

我可能正在教我的祖母在这里吸鸡蛋,但请记住,对于大小为 10 的数组,“级别不会超过 10”是错误的:

char a[10];
a[10] = '\0';  // Bug, and "Buffer Overrun" warning.

I'm probably teaching my grandmother to suck eggs here, but do remember that "level won't exceed 10" is wrong for an array of size 10:

char a[10];
a[10] = '\0';  // Bug, and "Buffer Overrun" warning.
命比纸薄 2024-09-11 20:40:39

真的确定吗?直到现在我才收到这个警告。所以,请仔细检查。

无论如何,您可以使用

#pragma warning( disable: 6386 )

预处理器指令。我通常按​​照建议将其推送并弹出到“pragma stack”

#pragma warning( push )
#pragma warning( disable : 6386 )
// Some code
#pragma warning( pop )

Are you really sure? I never got this warning until now. So, double check.

Anyway, you can use the

#pragma warning( disable: 6386 )

preprocessor directive. I usually push and pop this to the "pragma stack"

#pragma warning( push )
#pragma warning( disable : 6386 )
// Some code
#pragma warning( pop )

as advised here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文