å··ã®å㧠Ruby ã® Array#<< ã Array#push ãããéãã¨èããã®ã§èª¿ã¹ã¦ã¿ããã¾ãã¯ãã³ããã¼ã¯ãåã£ã¦ã¿ãã require 'benchmark' Benchmark.bm 10 do |r| r.report "push" do 8000000.times do; [].push(1); end end r.report "<<" do 8000000.times do; [] <<1; end end end çµæã¯ä»¥ä¸ã®éãã user    system      total        real push        1.570000  0.000000  1.570000 (  1.579687) <<          1.280000  0.000000  1.280000 (  1.288951) 確ãã« Array#<< ã®
{{#tags}}- {{label}}
{{/tags}}