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