Ruby ハッシュ 基本を復習
ハッシュの中身は
hash = { キー:値 }
hash = {key:value}
です。
中にいくつかのキーと値があるとして
hash = {key1:value1,key2:value2,key3:value3}
それらをオブジェクト.keysつまりこの場合では、puts hash.keysで
key1
key2
key3
と出力されます。
valueにもあり、puts hash.valuesで
value1
value2
value3
出力されます。
Author And Source
この問題について(Ruby ハッシュ 基本を復習), 我々は、より多くの情報をここで見つけました https://qiita.com/iggy-neko/items/ce95810055a26501db34著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .