Created
November 10, 2015 03:57
-
-
Save hatappi/6a18f2eac70fb53150a9 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
loop_num = 100000 | |
start_time = Time.now | |
str1 = '' | |
(1..loop_num).each do |_n| | |
str1 += 'a' | |
end | |
p "+=で#{loop_num}回結合するのにかかった時間は#{Time.now - start_time}秒" | |
start_time = Time.now | |
str2 = '' | |
(1..loop_num).each do |_n| | |
str2 << 'b' | |
end | |
p "<<で#{loop_num}回結合するのにかかった時間は#{Time.now - start_time}秒" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment