まあ、あなたの家庭教師は正しいようです:)
あなたはこのようにすることができます:
hash.invert[ country_id.to_i ] # will work on all versions
または、@littlecegian によって提案されたように
hash.key( country_id.to_i ) # will work on 1.9 only
または、@steenslag で提案されているように
hash.index( country_id.to_i ) # will work on 1.8 and 1.9, with a warning on 1.9
完全な例:
hash = { 'Portugal' => 1, 'France' => 2, 'USA' => 3 }
%w[2 3 1 blah].each do |country_id|
# all versions
country_name = hash.invert[ country_id.to_i ]
# 1.9 only
country_name = hash.key( country_id.to_i )
# 1.8 and 1.9, with a warning on 1.9
country_name = hash.index( country_id.to_i )
printf "country_id = %s, country_name = %s\n", country_id, country_name
end
印刷されます:
country_id = 2, country_name = France
country_id = 3, country_name = USA
country_id = 1, country_name = Portugal
country_id = blah, country_name =
ここで実行されているのを見てください