Created
September 6, 2013 01:32
-
-
Save justqyx/6458454 to your computer and use it in GitHub Desktop.
字符串拼接
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
iterations = 10_000_000 | |
a = "hub" | |
b = "git" | |
Benchmark.bm do |bm| | |
bm.report do | |
iterations.times do | |
["I'm", a, b].join(" ") | |
end | |
end | |
bm.report do | |
iterations.times do | |
"I'm #{a}#{b}" | |
end | |
end | |
bm.report do | |
iterations.times do | |
"I'm #{a + b}" | |
end | |
end | |
end | |
# Result | |
# user system total real | |
# 11.080000 0.030000 11.110000 ( 11.191327) | |
# 3.150000 0.010000 3.160000 ( 3.172435) | |
# 3.630000 0.010000 3.640000 ( 3.649727) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment