I recently read a nice post on using StringIO
in Ruby. What the author doesn't mention, though, is that StringIO
is just an "I." There's no "O." You can't do this, for example:
s = StringIO.new
s << 'foo'
s << 'bar'
s.to_s
# => should be "foo
bar"
# => really is ''`
Ruby really needs a StringBuffer just like the one Java has. StringBuffers serve two important purposes. First, they let you test the output half of what Ruby's StringIO does. Second, they are useful for building up long strings from small parts -- something that Joel reminds us over and over again is otherwise very very slow.
Is there a good replacement?
It's true that Strings in Ruby are mutable, but that doesn't mean we should always rely on that functionality. If stuff
is large, the performance and memory requirements of this, for example, is really bad.
result = stuff.map(&:to_s).join(' ')
The "correct" way to do this in Java is:
result = StringBuffer.new("")
for(String s : stuff) {
result.append(s);
}
Though my Java is a bit rusty.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…