Or does this method just indicate a unique integer that each object has?
|
feedback
|
|
It is a combination of many parameters, value, object type, place in memory. | |||
|
feedback
|
|
It isn't a direct reference to the memory location and the "encoding" is specific to a particular Ruby implementation. If you can read C code, you may find it instructive to look at the | |||
|
feedback
|
|
It's worth noting that you can perform a reverse-lookup of object IDs using:
For example:
| |||
|
feedback
|
|
well, it depends on what you mean by "ruby" ;) In jruby it's just a unique integer as far as I can tell. Also, things like numbers aren't the memory location. I forget all the details and am sure someone will give them to you.
| |||||
feedback
|
|
In "normal" ruby (MRI 1.8.x and 1.9.x) it's just a unique value. This is also the case in IronRuby | |||
|
feedback
|