0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rubyのコードで「ハッシュっぽいのに括弧は配列?」と一瞬混乱

Posted at

Rubyでこんなコード片を見かけて混乱した。

obj = [ a: "b", x: "y" ]

括弧は配列のものだが、中身はハッシュの書き方になっている。

業務で実際に動いているコードなので、文法エラーでないことは確か。

答え

irbなどで実行してみればすぐにわかる。同等のコードは以下の通り。

クリックして展開
obj = [{ a: "b", x: "y" }]
#=> [{:a=>"b", :x=>"y"}]

要するに「ハッシュを要素とする配列」。


思い返してみると、メソッド呼び出しの引数の最後ではハッシュの波括弧を省略できていた。配列リテラルの中も、引数と同じような扱いなのだろう。

def mtd(*args)
	p args
end

mtd 1, 2, a: "b", x: "y"
#=> [1, 2, {:a=>"b", :x=>"y"}]
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?