LoginSignup
2
1

More than 5 years have passed since last update.

rubyのハッシュ(連想配列)

Posted at

ハッシュとは?

ハッシュは連想配列のことで配列に対して番号ではなくてキーを設定できるもの。配列は基本0からのインデックスが振られるが連想配列だとキー=>要素で数字以外のもので識別できる。

書き方

colors = ["red"] => "赤","green" => "緑","blue" => "青"]
colors["blue"] => "緑"

下記のようにシンボルを用いて略せる

colors = {red: "赤",green: "緑", blue: "青"}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1