Skip to content

Instantly share code, notes, and snippets.

@translunar
Created February 26, 2016 15:20
Show Gist options
  • Save translunar/ca4781663fe003151de8 to your computer and use it in GitHub Desktop.
Save translunar/ca4781663fe003151de8 to your computer and use it in GitHub Desktop.
Comparing Ruby string concatenations
t1 = 0.0185549259185791
t2 = 0.01390695571899414
t3 = 0.05935215950012207
require 'time'
def f1
return 'this '\
'is '\
'a '\
'test'
end
def f2
return 'this is a test'
end
def f3
return 'this ' + 'is ' + 'a ' + 'test'
end
def t1 n
now = Time.now.to_f
n.times do
f1
end
endd = Time.now.to_f
endd-now
end
def t2 n
now = Time.now.to_f
n.times do
f2
end
endd = Time.now.to_f
endd-now
end
def t3 n
now = Time.now.to_f
n.times do
f3
end
endd = Time.now.to_f
endd-now
end
puts "t1 = #{t1(100000)}"
puts "t2 = #{t2(100000)}"
puts "t3 = #{t3(100000)}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment