6

我试图覆盖 Scala 中匿名函数的 toString ,如下所示:

scala> ()=>{def toString="yes"; 1}
res1: () => Int = <function0>

哪个不起作用-我希望 res1 以某种方式“是”。

这可能吗?

4

1 回答 1

8

你不能用匿名函数文字来做到这一点,你需要扩展特征Function。例如

val f = new (() => Int) {
  override def toString = "yes"
  def apply() = 1
}

或者

val f = new Function0[Int] {
  override def toString = "yes"
  def apply() = 1
}
于 2013-08-30T15:06:48.267 回答