如何在 ruby​​ 中声明 8 位无符号整数?

发布于 2024-08-03 10:40:58 字数 264 浏览 7 评论 0原文

在 C++ 中你可以这样做:

uint8 foo_bar

我们如何在 ruby​​ 中做同样的事情?还有其他选择吗?

这篇文章似乎很接近也许有人可以解释一下?

In c++ you can do:

uint8 foo_bar

How would we do the same thing in ruby? Any alternatives?

This post seems close to it maybe someone can explain?

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

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

发布评论

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

评论(2

眼泪都笑了 2024-08-10 10:40:58

Ruby 抽象了整数的内部存储,因此您不必担心它。

如果将整数分配给变量,Ruby 将处理内部事务,在需要时分配内存。较小的整数的类型为 Fixnum (存储在一个单词中),较大的整数属于 Bignum 类型

a = 64
a.class  #=> Fixnum; stored in a single word
a += 1234567890
a.class  #=> Bignum; stored in more than a single word

Ruby 是动态类型的,因此您不能强制变量仅包含无符号 8 位整数(就像不能强制变量仅包含字符串值等一样)。

Ruby abstracts away the internal storage of integers, so you don't have to worry about it.

If you assign an integer to a variable, Ruby will deal with the internals, allocating memory when needed. Smaller integers are of type Fixnum (stored in a single word), larger integers are of type Bignum.

a = 64
a.class  #=> Fixnum; stored in a single word
a += 1234567890
a.class  #=> Bignum; stored in more than a single word

Ruby is dynamically typed, so you cannot force a variable to contain only unsigned 8-bit integers (just as you cannot force a variable to only contain string values, etc.).

奢欲 2024-08-10 10:40:58

您无需在 Ruby 中声明类型。该语言是动态类型的。

You don't declare types in Ruby. The language is dynamically typed.

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