vote up 8 vote down star

This is has been bugging me for quite some time.

>> nil.id
(irb):2: warning: Object#id will be deprecated; use Object#object_id
=> 4

Why would nil.id be 4? (or nil.object_id if you want to be picky about deprecations)

flag

4 Answers

vote up 14 vote down check

This is because nil is an object created when the language initializes, and that object's id happens to always be 4.

For more information about why the id happens to be 4, see this blog post.

link|flag
vote up 4 vote down

This post seems to have some information about how object_id works.

link|flag
This is a useful link, I don't know why it vwas downvoted. +1 – Keltia Feb 16 at 14:44
Down voted probably because the person felt that this belonged in the text of my question. Which would be a valid point but downvoting without a comment doesn't get that across :) – epochwolf Feb 19 at 17:16
vote up 1 vote down

It happens because the id of every object had to somehow be represented in the C Ruby interpreter. Numbers got mapped to (number*2)+1, truthiness got 0, falseness got 2 and nil had 4 left. It´s just a weird implementation issue or leaky abstraction. You shouldn't worry about it unless you want to write a Ruby interpreter.

link|flag
vote up 0 vote down

I'd always assumed it was a cool easter egg: In Japan 4 is the number of death.

link|flag

Your Answer

Get an OpenID
or

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