如何从两个相同大小的数组中构build一个Ruby哈希?

我有两个数组

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

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

我想要

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

任何方式来做到这一点?

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

…该死的,我爱Ruby。

只是想指出,这样做有一个更简洁的方法:

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

不得不同意“我爱ruby”的一部分!

这个怎么样?

 [a, b].transpose.to_h 

如果你使用Ruby 1.9:

 Hash[ [a, b].transpose ] 

我觉得a.zip(b)看起来像是主人, b是奴隶,但是在这种风格下他们是平的。