arr = ["red","green","yellow"]

arr2 = arr.clone
arr2[0].replace("blue")

puts arr.inspect
puts arr2.inspect

produces:

["blue", "green", "yellow"]
["blue", "green", "yellow"]

Is there anyway to do a deep copy of an array of strings, other than using Marshal as i understand that is a hack.

I could do:

arr2 = []
arr.each do |e|
  arr2 << e.clone
end

but it doesn't seem very elegant, or efficient.

Thanks

link|improve this question

you can do shorter inline block: arr.each{|e| arr2 << e.dup} – fl00r Apr 5 '10 at 18:21
feedback

3 Answers

up vote 3 down vote accepted

Your second solution can be shortened to arr2 = arr.map do |e| e.dup end (unless you actually need the behaviour of clone, it's recommended to use dup instead).

Other than that your two solutions are basically the standard solutions to perform a deep copy (though the second version is only one-level deep (i.e. if you use it on an array of arrays of strings, you can still mutate the strings)). There isn't really a nicer way.

Edit: Here's a recursive deep_dup method that works with arbitrarily nested arrays:

class Array
  def deep_dup
    map {|x| x.deep_dup}
  end
end

class Object
  def deep_dup
    dup
  end
end

class Numeric
  # We need this because number.dup throws an exception
  # We also need the same definition for Symbol, TrueClass and FalseClass
  def deep_dup
    self
  end
end

You might also want to define deep_dup for other containers (like Hash), otherwise you'll still get a shallow copy for those.

link|improve this answer
Thanks for your answer sepp2k, so if you have a nested array, the only way is to use Marshal? – dangerousdave Apr 5 '10 at 19:39
@Jon: No you could also define a recursive deep_dup method (see my edit), but using Marshal is usually easier. – sepp2k Apr 5 '10 at 19:42
Can't you avoid patching Numeric etc. by defining deep_dup in Object to do this?: respond_to?(:dup) ? dup : self – Lars Haugseth Apr 6 '10 at 14:19
@Lars: No, because Numerics do respond to dup. They just respond by throwing an exception. – sepp2k Apr 6 '10 at 14:24
@sepp2k: Bummer. Then something like [Numeric, Symbol, TrueClass, FalseClass].include?(self.class) ? self : dup; ought to do the trick. – Lars Haugseth Apr 11 '10 at 15:38
show 1 more comment
feedback

You can use this hack:

arr1 = %w{ red green blue }
arr2 = arr1.join("--!--").split("--!--")

But it is just for fun :)

arr2[0].replace("lol")
p arr1
#=> ["red", "green", "blue"]
p arr2
#=> ["lol", "green", "blue"]

And it will work only for 1 level arrays

link|improve this answer
It will also only work if the array only contains strings and none of the strings contain "--!--" as a substring. – sepp2k Apr 5 '10 at 18:38
sepp2k, yeap, it's just hack for one purpose only :) like tetra pack – fl00r Apr 5 '10 at 18:40
feedback

I recommend your initial idea, but written slightly more concisely:

arr = ["red","green","yellow"]
arr2 = arr.inject([]) { |a,element| a << element.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.