如何在 Ruby 中将 64 位整数存储在两个 32 位整数中
正如标题所说,我对如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在 C 中使用的语法在 ruby 中也适用,只需删除类型转换即可:
如果您需要将值精确地包含在 32 位块中(即,您需要对某些外部数据文件或程序进行二进制处理),那么您'想要使用 Array#pack 和 String#unpack 以获得正确的位。
The same syntax you'd use in C works in ruby, just drop the typecasts:
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.
一个 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)