前面讲偏应用函数了?第几节?
没讲
def add(a:Int)(b:Int):Int=a+b//颗粒(柯里化)
def method = add(1)_ //让a等于1,后面的参数用通配符_通配,即偏应用函数,是函数类型的
method(2)//让b等于2,完成1+2=3