I am working through Ruby Koans. I am at the section in about_strings.rb which asks:

"Ruby programmers tend to favor the shovel operator (<<) over the plus equals operator (+=) when building up strings. Why?"

My guess is it involves speed, but I don't understand the action under the hood that would cause the shovel operator to be faster. Would someone be able to please explain the details behind this preference?

link|improve this question
feedback

4 Answers

up vote 40 down vote accepted

Proof:

a = 'foo'
a.object_id #=> 2154889340
a << 'bar'
a.object_id #=> 2154889340
a += 'quux'
a.object_id #=> 2154742560

So << alters the original string rather than creating a new one. The reason for this is that in ruby a += b is syntactic shorthand for a = a + b (the same goes for the other <op>= operators) which is an assignment. On the other hand << is an alias of concat() which alters the receiver in-place.

link|improve this answer
1  
Thanks, noodl! So, in essence, the << is faster because it does not create new objects? – emb Jan 13 '11 at 19:51
This benchmark says that Array#join is slower than using <<. – Andrew Grimm Jan 13 '11 at 22:08
Ok thanks @Andrew. I'll remove that comment. – noodl Jan 13 '11 at 22:53
4  
One of the EdgeCase guys has posted an explanation with performance numbers: A Little More About Strings – Cincinnati Joe Feb 22 '11 at 0:17
feedback

Performance proof:

#!/usr/bin/env ruby

require 'benchmark'

Benchmark.bmbm do |x|
  x.report('+= :') do
    s = ""
    10000.times { s += "something " }
  end
  x.report('<< :') do
    s = ""
    10000.times { s << "something " }
  end
end

# Rehearsal ----------------------------------------
# += :   0.450000   0.010000   0.460000 (  0.465936)
# << :   0.010000   0.000000   0.010000 (  0.009451)
# ------------------------------- total: 0.470000sec
# 
#            user     system      total        real
# += :   0.270000   0.010000   0.280000 (  0.277945)
# << :   0.000000   0.000000   0.000000 (  0.003043)
link|improve this answer
Thank you, Nemo! – emb Jan 14 '11 at 1:33
feedback

Because it's faster / does not create a copy of the string <-> garbage collector does not need to run.

link|improve this answer
feedback

While not a direct answer to your question, why's The Fully Upturned Bin always has been one of my favorite Ruby articles. It also contains some info on strings in regards to garbage collection.

link|improve this answer
Thank you for the tip, Michael! I haven't gotten that far in Ruby yet, but it will definitely come in handy in the future. – emb Jan 14 '11 at 1:34
feedback

Your Answer

 
or
required, but never shown

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