有咖喱参数的问题

时间:2013-10-09 23:13:22

标签: scala currying

如果我只是将它设为“案例类”,则下面的代码运行得非常好。但是,我当然不希望这是一个可变对象 - 但通过将其更改为常规类,它似乎不再理解最后的匿名函数参数。不知道为什么我不能通过这个,我尝试了一些变化,无法理解为什么使它成为一个案例类工作。 (scala 2.10.2) - 谢谢

/**
 *
 * @param target  - can be any large target number
 * @param perPiece  - at what percentage interval is todo called
 * @param todo    - passed current percentage complete
 */
class ProgressTool(target:Double, perPiece:Double) (todo: (Double)=>Unit) extends Mutable {

  private[this] var lastUpdate:Double =0.0

  def update(atPos:Double) = {
    val step = atPos - lastUpdate

    if (step/target >=perPiece) {
      lastUpdate += step
      todo(lastUpdate)

    }
  }

}


object TestProgressTool extends App {

  val x = new ProgressTool(1000,.01) { x:Double =>
    println("Hello "+ x)
  }
}

在ProgressTool类中缺少构造函数ProgressTool的参数   val x = new ProgressTool(1000,.01){x:Double =>               ^

2 个答案:

答案 0 :(得分:1)

不确定为什么它似乎有用,但试试这个(注意构造函数的第一个参数附加的括号):

object TestProgressTool extends App {

  val x = (new ProgressTool(1000,.01)) { x:Double =>
    println("Hello "+ x)
  }
}

答案 1 :(得分:0)

在第二个参数列表周围使用圆形parens也会修复代码并且可能不那么令人惊讶:

object TestProgressTool extends App {
  val x = new ProgressTool(1000,.01) ({ x:Double =>
    println("Hello "+ x)
  })
}