Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I watched this video. Why is a = a evaluated to nil if a is not defined?

a = a # => nil
b = c = q = c # => nil
share|improve this question

2 Answers

up vote 34 down vote accepted

Ruby interpreter initializes a local variable with nil when it sees an assignment to it. It initializes the local variable before it executes the assignment expression or even when the assignment is not reachable (as in the example below). This means your code initializes a with nil and then the expression a = nil will evaluate to the right hand value.

a = 1 if false
a.nil? # => true

The first assignment expression is not executed, but a is initialized with nil.

share|improve this answer

In general, the expression x=y first assigns the value of y to the variable x, and then returns that value. When a is not defined, its value is nil ("no object"). Therefore, the expression a=a first assigns the value of a, equal to nil, to a, and then returns that value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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