如何修复错误 c2118:负下标

发布于 2024-08-05 15:51:26 字数 304 浏览 8 评论 0原文

再次将 32 位应用程序移植到 64 位。我在下面提到的 C_ASSERT 语句中收到负下标错误。


C_ASSERT (sizeof(somestruct) == some#define);

我还阅读了 http://support.microsoft .com/kb/68475 文章,但不确定我是否知道在这种情况下如何解决它。

感谢帮助。

提前致谢。

Again, porting 32-bit app to 64-bit. I get the negative subscript error on the C_ASSERT statement mentioned below..


C_ASSERT (sizeof(somestruct) == some#define);

I also read the http://support.microsoft.com/kb/68475 article but not sure if I know how to fix it in this case.

Help is appreciated.

Thanks in advance.

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

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

发布评论

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

评论(1

痞味浪人 2024-08-12 15:51:26

我猜测 C_ASSERT 宏的定义如下:

#define C_ASSERT(x) typedef char C_ASSERT_ ## __COUNTER__ [(x) ? 1 : -1];

这是一个编译时断言:如果编译时表达式 x 为 true,则它会扩展为某个内容就像

typedef char C_ASSERT_1[1];

将类型名称 C_ASSERT_1 声明为类型 char[1] 的别名(1 个 char 的数组)。相反,如果表达式 x 为 false,则它会扩展为

typedef char C_ASSERT_1[-1];

编译器错误,因为不能使用负大小的数组类型。

因此,您的问题是表达式 sizeof(somestruct) == some#define 为 false,即 somestruct 的大小不是您的代码所期望的。您需要解决此问题 - 更改 somestruct 的大小,或更改 some#define 的值,确保这不会破坏任何内容。

I'm guessing the C_ASSERT macro is defined something like this:

#define C_ASSERT(x) typedef char C_ASSERT_ ## __COUNTER__ [(x) ? 1 : -1];

This is a compile-time assertion: if the compile-time expression x is true, then this expands to something like

typedef char C_ASSERT_1[1];

which declares the typename C_ASSERT_1 to be an alias for the type char[1] (array of 1 char). Converely, if the expression x is false, it expands to

typedef char C_ASSERT_1[-1];

which is a compiler error, since you can't have an array type of negative size.

Hence, your problem is that the expression sizeof(somestruct) == some#define is false, i.e. the size of somestruct is NOT what your code is expecting. You need to fix this -- either change the size of somestruct, or change the value of some#define, making sure that this won't break anything.

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