.NET / C# - 允许整数溢出

发布于 2024-08-16 11:41:24 字数 502 浏览 3 评论 0原文

最近我开始制作一个项目容器,每次用户尝试将项目添加到容器中时。如果以某种方式存在相同的项目类型,它会将它们堆叠在一起,但有一个限制,即 int.MaxValue 如果我尝试:

if (2147483647 + 2147483647 > int.MaxValue)

这会给我以下错误:

The operation overflows at compile time in checked mode

所以我尝试使用 unchecked 关键字,如下所示:

unchecked
{
     if (2147483647 + 2147483647 > int.MaxValue)
     {
     }
}

但这根本不显示触发 if 语句(我猜它包含逻辑 AND 运算符?)

还有其他方法可以做到这一点吗? (不使用 int64 等)

Recently i started making a item container, and every time the user tries to add an item into the container. If somehow the same item type exists, it'll stack them on top of each other, but there's a limit, which is int.MaxValue and if i tried:

if (2147483647 + 2147483647 > int.MaxValue)

That would give me the following error:

The operation overflows at compile time in checked mode

So i tried to use the unchecked keyword like so:

unchecked
{
     if (2147483647 + 2147483647 > int.MaxValue)
     {
     }
}

but this doesn't show trigger the if statement at all (I'm guessing it's wrapped around a Logical AND operator?)

Is there other ways to do this? (without using something like a int64, etc)

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

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

发布评论

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

评论(4

2024-08-23 11:41:24

如果 int 运算溢出,则不会测试大于 Int32.MaxValue 的值。

如果您希望该条件成立,请使用长整型。

if (2147483647L + 2147483647L > int.MaxValue) ...

或者,使用 uint。

if (2147483647U + 2147483647U > (uint)int.MaxValue) ...

If an int operation overflows its not going to test greater than Int32.MaxValue.

If you want that condition to be true, use longs.

if (2147483647L + 2147483647L > int.MaxValue) ...

Alternatively, use uints.

if (2147483647U + 2147483647U > (uint)int.MaxValue) ...
情独悲 2024-08-23 11:41:24

如果不需要位空间的负半部分,请尝试将两者都转换为 uint (无符号)。相同的位宽,只是在 Int.MaxValue 之后不会滚动负值(例如,它是 int.MaxValue 大小的 2 倍)

Try casting both to uint (unsigned) if you don't need the negative half of the bitspace. Same bit width, just doesn't roll negative after Int.MaxValue (eg, it's 2x the magnitude of int.MaxValue)

煮酒 2024-08-23 11:41:24

if 条件未得到的主要原因是,由于 int 溢出,添加 2147483647 + 2147483647 将导致 -2 unchecked 块。

这就是您的 if 条件 2147483647 + 2147483647 > 的原因int.MaxValue 永远不会为真,因为它会被计算为 -2 > int.MaxValue,这不是真的。

The main reason your if condition isn't getting is because the addition of 2147483647 + 2147483647 will result in -2 because of overflows of int in the unchecked block.

This is the reason your if condition 2147483647 + 2147483647 > int.MaxValue is never going to be true because it'll get evaluated to -2 > int.MaxValue, which isn't true.

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