5
6

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のブロック引数とブロックパラメーターを混同しないで

Last updated at Posted at 2014-12-18

Rubyの「ブロック引数」と「ブロックパラメーター」を混同した文章を見かけます。

ブロック引数というのは,メソッドに与えられたブロックを Proc オブジェクトとして受け取るための仮引数のこと。つまり

def foo(&b)
  b.call
end

における b のことですね。

一方,ブロックパラメーターはメソッド側からブロックに渡されるオブジェクトを受け取るもの。つまり

ary.map{ |x| x**2 }

における x のことですね。

5
6
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
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?