จะสร้าง Ruby hash จากอาร์เรย์สองอันที่มีขนาดเท่ากันได้อย่างไร?


92

ฉันมีสองอาร์เรย์

a = [:foo, :bar, :baz, :bof]

และ

b = ["hello", "world", 1, 2]

ฉันต้องการ

{:foo => "hello", :bar => "world", :baz => 1, :bof => 2}

วิธีใดในการทำเช่นนี้

คำตอบ:


206
h = Hash[a.zip b] # => {:baz=>1, :bof=>2, :bar=>"world", :foo=>"hello"}

... ด่าฉันรักทับทิม


3
ค่อนข้างชัดเจน แต่ถ้าใครสงสัยถ้าคุณต้องการรับอาร์เรย์ดั้งเดิมจากแฮชใหม่คุณสามารถโทรh.keysและh.values.
bhaity

38

แค่อยากจะชี้ให้เห็นว่ามีวิธีที่สะอาดกว่านี้เล็กน้อย:

h = a.zip(b).to_h # => {:foo=>"hello", :bar=>"world", :baz=>1, :bof=>2}

ต้องยอมในบท "I love Ruby" แม้ว่า!


16

แล้วอันนี้ละ?

[a, b].transpose.to_h

หากคุณใช้ Ruby 1.9:

Hash[ [a, b].transpose ]

ฉันรู้สึกว่าa.zip(b)ดูเหมือนaเป็นนายและbเป็นทาส แต่ในรูปแบบนี้พวกเขาแบน


1

เพียงเพื่อความอยากรู้อยากเห็น:

require 'fruity'

a = [:foo, :bar, :baz, :bof]
b = ["hello", "world", 1, 2]

compare do
  jtbandes { h = Hash[a.zip b] }
  lethjakman { h = a.zip(b).to_h }
  junichi_ito1 { [a, b].transpose.to_h }
  junichi_ito2 { Hash[ [a, b].transpose ] } 
end

# >> Running each test 8192 times. Test will take about 1 second.
# >> lethjakman is similar to junichi_ito1
# >> junichi_ito1 is similar to jtbandes
# >> jtbandes is similar to junichi_ito2

compare do 
  junichi_ito1 { [a, b].transpose.to_h }
  junichi_ito2 { Hash[ [a, b].transpose ] } 
end

# >> Running each test 8192 times. Test will take about 1 second.
# >> junichi_ito1 is faster than junichi_ito2 by 19.999999999999996% ± 10.0%
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.