gpt4 book ai didi

ruby - 为什么 fixnum 没有特征类?

转载 作者:太空宇宙 更新时间:2023-11-03 16:17:49 25 4
gpt4 key购买 nike

该方法返回任意对象的特征类:

class Object
def eigenclass
class << self; self; end
end
end

字符串示例:

"abc".eigenclass # => #<Class:#<String:0x331df0>>

数组:

[1, 2].eigenclass # => #<Class:#<Array:0x0000000065d218>>

但是对于 Fixnum:

1.eigenclass # => TypeError: can't define singleton

为什么?

最佳答案

作为Ruby Docs说:

There is effectively only one Fixnum object instance for any given integer value, so, for example, you cannot add a singleton method to a Fixnum.

BignumFloatSymbol 也是如此

关于ruby - 为什么 fixnum 没有特征类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39887145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com