最佳答案
我有两个数组
a = [:foo, :bar, :baz, :bof]
还有
b = ["hello", "world", 1, 2]
我想
{:foo => "hello", :bar => "world", :baz => 1, :bof => 2}
有什么办法吗?