避免“缓冲区溢出” C6386 警告
在我的代码中,我使用包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可能正在教我的祖母在这里吸鸡蛋,但请记住,对于大小为 10 的数组,“级别不会超过 10”是错误的:
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:
您真的确定吗?直到现在我才收到这个警告。所以,请仔细检查。
无论如何,您可以使用
预处理器指令。我通常按照建议将其推送并弹出到“pragma stack”
Are you really sure? I never got this warning until now. So, double check.
Anyway, you can use the
preprocessor directive. I usually push and pop this to the "pragma stack"
as advised here.