Proc&Lamda
Proc
Procs are full-fledged objects, so they have all the powers and abilities of objects. (Blocks do not.)
Unlike blocks, procs can be called over and over without rewriting them. This prevents you from having to retype the contents of your block every time you need to execute a particular bit of code.
&
is used to convert the cube proc into a block
.call
์ ์ด์ฉํด์ proc์ ์ฝ๊ฒ ํธ์ถํ ์ ์๋ค.convert symbols to procs using that handy little
&
Lambda
proc๊ณผ lambda์ ์ฐจ์ด
argument ๊ฐ ์ค๋ฅ๊ฐ ๋ฌ์๋ proc์ ๋ฌด์ํ๊ณ nil์ฒ๋ฆฌ ํ ๋์ด๊ฐ๋๋ฐ lambda๋ ์ค๋ฅ๊ฐ๋๋ค.
lambda๋ call์ด ๋๋ฉด ๋ค์ ๋ง์ง๋ง ์ฝ๋๋ก ๋์๊ฐ๋๋ฐ proc์ ๋๋๋ค.
Scope
global variables : available everywhere
local variables : available certain methods
class variables : members of a certain class
instance variables : only available to particular instances of a class
Last updated