scala,使用类成员函数作为第一类函数

时间:2015-03-12 11:43:29

标签: function scala class member

我想将类实例的成员函数指定为变量的第一类函数:

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

我们可以通过指定适当的匿名函数来获得所需的效果。 这是唯一的方法吗? 我搜索了但根本找不到任何参考。

1 个答案:

答案 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
                 ^