Is this behavior correct? I'm running some code like the following:

@a_hash = {:a => 1}
x = @a_hash
x.merge!({:b => 2})

At the end of all that, x's value has been changed as expected but so has the value for @a_hash. I'm getting {:a => 1, :b => 2} as the value for both of them. Is this normal behavior in Ruby?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Yes, instance variable @a_hash and local variable x store the reference to the same Hash instance and when you change this instance (using mutator method merge! that change object in place), these variables will be evaluated to the same value.

You may want to use merge method that create a copy of the object and don't change original one:

@a_hash = {:a => 1}
x = @a_hash
y = x.merge({:b => 2})
# y => {:a => 1, :b => 2}
# x and @a_hash => {:a => 1}
link|improve this answer
Ah, okay. I suspected that was what's happening. Thanks. – blim8183 Feb 3 at 19:49
feedback

@a_hash is link to x. So if You want @a_hash not changed, you should do like this:

@a_hash = {:a => 1}
x = @a_hash.clone
x.merge!({:b => 2})
link|improve this answer
2  
I wouldn't recommend to clone when it's totally equivalent to x = @a_hash.merge(:b => 2) – tokland Feb 3 at 20:22
feedback

Yes, that's normal behavior in ruby (and most other languages). Both x and @a_hash are references to the same object. By calling merge! you change that object and that change in visible through all variables that refer to it.

If you don't want that behavior, you should either not use mutating methods (i.e. use x = x.merge(...) instead) or copy the object before you mutate it (i.e. x = @a_hash.dup).

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.