已采纳回答 / 精慕门5377749
没讲def add(a:Int)(b:Int):Int=a+b//颗粒(柯里化)def method = add(1)_ //让a等于1,后面的参数用通配符_通配,即偏应用函数,是函数类型的method(2)//让b等于2,完成1+2=3
2018-05-13