I have a hash like:

h = {'name' => 'sayuj', 
     'age' => 22, 
     'project' => {'project_name' => 'abc', 
                   'duration' => 'prq'}}

I need a dup of this hash, the change should not affect the original hash.

When I try,

d = h.dup # or d = h.clone
d['name'] = 'sayuj1'
d['project']['duration'] = 'xyz'

p d #=> {"name"=>"sayuj1", "project"=>{"duration"=>"xyz", "project_name"=>"abc"}, "age"=>22}
p h #=> {"name"=>"sayuj", "project"=>{"duration"=>"xyz", "project_name"=>"abc"}, "age"=>22}

Here you can see the project['duration'] is changed in the original hash because project is another hash object.

I want the hash to be duped or cloned recursively. How can I achieve this?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Here's how you make deep copies in Ruby

d = Marshal.load( Marshal.dump(h) )
link|improve this answer
2  
This creates full copies of all objects referenced by h. This might be exactly what is needed by Sayuj for simple String hashes. With more complex objects, this might not be desired anymore. Once could override the Hash#dup method to dup all hashes in values recursively. But that would need to be extended for every object type. – Holger Just Jan 3 at 10:21
@HolgerJust: yes, that's why it's called a "deep copy" :-) – Sergio Tulentsev Jan 3 at 10:22
Of course. I just wanted to mention that it might do more than the OP intended (although it's probably just fine) :) So it's just for, well, future reference. – Holger Just Jan 3 at 10:25
1  
Note that this will not work when there is a default proc (e.g. h = Hash.new {|h,k| h[k] = 1}) – Mark Thomas Jan 3 at 12:44
feedback

Your Answer

 
or
required, but never shown

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