我想将类实例的成员函数指定为变量的第一类函数:
class A(val id:Int){ def f(u:Int)=id+u }
val a= new A(0)
val h=a.f // fails: interpreted as a.f(with missing parameter u)
val h1 = (u:Int)=>a.f(u) // OK and does what we want
我们可以通过指定适当的匿名函数来获得所需的效果。 这是唯一的方法吗? 我搜索了但根本找不到任何参考。
答案 0 :(得分:5)
使用占位符表示它已部分应用:
scala> class A(val id:Int){ def f(u:Int)=id+u }
defined class A
scala> val a = new A(0)
a: A = A@46a7a4cc
scala> val h = a.f _
h: Int => Int = <function1>
scala> h(2)
res0: Int = 2
修改强>
在REPL打印中尝试输出代码
scala> val h = a.f
<console>:9: error: missing arguments for method f in class A;
follow this method with `_' if you want to treat it as a partially applied function
val h = a.f
^