up vote 2 down vote favorite
share [g+] share [fb]

Or does this method just indicate a unique integer that each object has?

link|improve this question
feedback

5 Answers

It is a combination of many parameters, value, object type, place in memory.
More can be read here

link|improve this answer
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 rb_obj_id and id2ref methods in gc.c in the Ruby 1.8.6 source. You can also read more about the "encoding" in the "Objects embedded in VALUE" section of the partial translation of the Ruby Hacking Guide chapter 2.

link|improve this answer
Link to MRI source. – Sony Santos Aug 8 '11 at 8:49
feedback

It's worth noting that you can perform a reverse-lookup of object IDs using:

ObjectSpace._id2ref(object_id)

For example:

ObjectSpace._id2ref(0) #=> false
ObjectSpace._id2ref(1) #=> 0
ObjectSpace._id2ref(2) #=> true
ObjectSpace._id2ref(3) #=> 1
ObjectSpace._id2ref(4) #=> nil
link|improve this answer
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.

irb(main):020:0> 1.object_id
=> 3 
irb(main):021:0> (2-1).object_id
=> 3
link|improve this answer
1  
Fixnum are stored in the object_id bit shifted to the left and with the least significant bit set, see stackoverflow.com/questions/2402228/… Your (2-1) doesn't make sense, try this instead (4711>>1).object_id – Jonas Elfström Mar 9 '10 at 8:47
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.