我可以覆盖Scala中匿名函数的toString方法吗?

时间:2013-08-30 15:03:07

标签: scala

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

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

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

这可能吗?

1 个答案:

答案 0 :(得分:7)

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

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

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