※ 引述《AIGecko (壁虎貓耳控)》之銘言:
: 偶然忘了打函式只打了小括號
: 發現.()等同.call()
: ->(){print "hello, world"}.() #=>hello, world
: ->(){print "hello, world"}.call() #=>hello, world
: 不只是Proc
: 其他物件只要有call這個方法都可以這樣用
: class C
: def call
: print "hello, world"
: end
: end
: C.new.() #=>hello, world
: 這誰會發現啊...
: 而且可讀性也不好...
這是Ruby內部運作的概念啊
所有東西都是運算子
像是a+b
實際狀況是 => a.+(b)
也就是呼叫了a當中的+這個方法去跟b處理
method()
同樣也可以是 => method.()
反倒概念上call是()的別名正確一點XD
雖然在實際上也不是這樣就是XDDD