我试图在Scala中覆盖匿名函数的toString,如下所示:
scala> ()=>{def toString="yes"; 1}
res1: () => Int = <function0>
哪个不起作用 - 我希望res1以某种方式为“是”。
这可能吗?
答案 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
}