fruit = ["apple","red","banana","yellow"]
=> ["apple", "red", "banana", "yellow"]
Hash[*fruit]
=> {"apple"=>"red", "banana"=>"yellow"}
爲什麼splat會導致數組如此整齊地分析到哈希中?從數組中製作哈希 - 這是如何工作的?
或者更準確地說,哈希如何「知道」「蘋果」是關鍵,「紅色」是它的對應值?
難道僅僅是因爲他們在水果陣列中的連續位置?
摔跤在這裏使用有意義嗎?哈希是否可以不直接從arry中直接定義呢?