如何在 Ruby 中将 64 位整数存储在两个 32 位整数中

发布于 2024-10-14 17:50:44 字数 80 浏览 2 评论 0原文

正如标题所说,我对如何在 Ruby 中实现这一点有点迷失……有很多关于如何在 C 或 C++ 中实现这一点的主题。有红宝石专家可以对此发表意见吗?

As the title says, I'm a little lost on how to accomplish this in Ruby...there are number of topics on how to do this in C or C++. Any ruby experts out there that can chime in on this?

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

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

发布评论

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

评论(2

春庭雪 2024-10-21 17:50:44

您在 C 中使用的语法在 ruby​​ 中也适用,只需删除类型转换即可:

n = 0xFFFFFFFFEEEEEEEE
x = (n & 0xFFFFFFFF00000000) >> 32
y =  n & 0xFFFFFFFF
puts x.to_s(16)
# => "ffffffff"
puts y.to_s(16)
# => "eeeeeeee"
v = x << 32 | y
puts v.to_s(16)
# => "ffffffffeeeeeeee"

如果您需要将值精确地包含在 32 位块中(即,您需要对某些外部数据文件或程序进行二进制处理),那么您'想要使用 Array#packString#unpack 以获得正确的位。

The same syntax you'd use in C works in ruby, just drop the typecasts:

n = 0xFFFFFFFFEEEEEEEE
x = (n & 0xFFFFFFFF00000000) >> 32
y =  n & 0xFFFFFFFF
puts x.to_s(16)
# => "ffffffff"
puts y.to_s(16)
# => "eeeeeeee"
v = x << 32 | y
puts v.to_s(16)
# => "ffffffffeeeeeeee"

If you need the values to be in chunks of exactly 32 bits (i.e. you need to speak binary to some external data file or program), then you'll want to use Array#pack and String#unpack to get the right bits.

心如狂蝶 2024-10-21 17:50:44

一个 64 位整数不等于两个 32 位整数。

http://en.wikipedia.org/wiki/Integer_(computer_science)

one 64bit integer is not equal to two 32bit integers.

http://en.wikipedia.org/wiki/Integer_(computer_science)

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