我有這樣的代碼:爲什麼不是這個Ruby哈希我認爲它會是什麼?
$ze = Hash.new(Hash.new(2))
$ze['test'] = {0=> 'a', 1=>'b', 3 => 'c'}
$ze[5][0] = 'one'
$ze[5][1] = "two"
puts $ze
puts $ze[5]
這是輸出:
{"test"=>{0=>"a", 1=>"b", 3=>"c"}}
{0=>"one", 1=>"two"}
爲什麼不是輸出:
{"test"=>{0=>"a", 1=>"b", 3=>"c"}, 5=>{0=>"one", 1=>"two"}}
{0=>"one", 1=>"two"}
?
不要使用全局變量,它們是醜陋! – Hauleth