240 发简信
IP属地:山东
  • scala柯里化函数

    定义curried函数:def add(a: Int)(b: Int)=a+b 调用:var addOne=add(1) _ addOne(2) out: 3 将已有函数cu...