如何模拟 Fixnum 变量的整数溢出?

发布于 2024-12-04 05:40:38 字数 375 浏览 1 评论 0原文

我目前正在将算法从 Java 转换为 Ruby,并且由于 Ruby 中缺乏整数溢出而遇到了一些障碍。

假设我的值为 2663860877,这比最大整数 2147483648 更大。

在 Java 中,它会环绕,我应该得到 -1631106419。

我找到了这段代码,但它似乎不起作用:

def force_overflow(i)
  if i < -2147483648
    -(-(i) & 0xffffffff)
  elsif i > 2147483647
    i & 0xffffffff
  else
    i
  end
end

并且变量不会像您期望的那样强制它为负值。

I'm currently converting an algorithm from Java to Ruby, and I've hit a bit of a snag with the lack of integer overflowing in Ruby.

Say I have a value of 2663860877, this is bigger than the max integer 2147483648.

In Java, it wraps around and I should get -1631106419.

I found this bit of code, but it doesn't seem to be working:

def force_overflow(i)
  if i < -2147483648
    -(-(i) & 0xffffffff)
  elsif i > 2147483647
    i & 0xffffffff
  else
    i
  end
end

And'ing the variable doesn't force it negative like you'd expect.

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

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

发布评论

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

评论(1

删除会话 2024-12-11 05:40:38

假设 32 位整数带有二进制补码负数,这应该可以工作:

def force_overflow_signed(i)
  force_overflow_unsigned(i + 2**31) - 2**31
end

def force_overflow_unsigned(i)
  i % 2**32   # or equivalently: i & 0xffffffff
end

Assuming 32bit integers with two's complement negatives this should work:

def force_overflow_signed(i)
  force_overflow_unsigned(i + 2**31) - 2**31
end

def force_overflow_unsigned(i)
  i % 2**32   # or equivalently: i & 0xffffffff
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文