Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我创建一个对象实例并对其调用 #inspect 时(没有覆盖该方法),它都会返回类似#<ObjectName:0x####### @var=value>.
#<ObjectName:0x####### @var=value>
这是什么0x#######意思,我可以在编写自定义检查方法时使用它吗?
0x#######
class Foo;end Foo.new # => #<Foo:0x852e178>
它是您创建的对象的内存引用(内存中的唯一存储位置)。