1
我是scala的新手,只是玩弄一些代碼。我從一個例子中創建了一個curried函數,我在網上找到這行:Scala中是否有可能使用匿名函數創建部分curried函數
def adder(a: Int, b: Int) = a + b
var addto = (adder _).curried
它的工作原理。但是,當我嘗試用匿名函數如..更換加法
var addto = ({(a :Int, b: Int) => a + b} _).curried
我得到一個錯誤說:
error: _ must follow method; cannot follow (Int, Int) => Int
任何想法,爲什麼這不工作?
很酷謝謝。加法器是一種方法而不是一種功能? –
'def'定義了一個方法,而'val'和'var'產生了一個函數。 –
'加法器'是一種方法。當我們說功能,即當你做'加法器_'時,你會得到一個'Function2 [Int,Int,Int]'對象。 – Jatin