vote up 1 vote down star

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

flag

4 Answers

vote up 1 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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