Ruby 的开发文档中,对象的默认 inspect 方法里写到:
obj.inspect → string
Returns a string containing a human-readable representation of obj. The default inspect shows the object's class name, an encoding of the object id.
这里的 an encoding of the object id 是怎么实现的呢?也就是"#"中的这一串东西“0x0000000003630558”是怎么来的呢?