uint8 foo_bar
我们如何在ruby中做同样的事情?任何替代品?
This post seems close to it也许有人可以解释一下?
如果为变量分配一个整数,Ruby将处理内部,在需要时分配内存.较小的整数是Fixnum型(存储在一个单词中),较大的整数是Bignum型.
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位整数(就像您不能强制变量只包含字符串值一样).