如何检索案例类的apply方法

时间:2014-10-09 21:28:47

标签: scala

鉴于案例类,我想检索apply方法。

我可以A.apply _但是有办法只用A

来检索它

实施例

scala> case class A(s: String)
defined class A

scala> def f[B, C](h: B => C) = h
f: [B, C](h: B => C)B => C

scala> f(A.apply _)
res0: String => A = <function1>

是否可以只写f(A)或类似的东西

2 个答案:

答案 0 :(得分:3)

以下适用于Scala 2.11:

package sandbox

object ApplyMethod {
  import sandbox.OtherApplyTest.C
  case class A(s: String)

  object B {
    def apply(s: String): A = A(s)
  }

  def D(s: String) = OtherApplyTest.D(s)

  def f[T](h: String => T) = h("hello")

  def g[T, U](h: T => U) = h

  def main(args: Array[String]) {
    println(f(A)) // prints A(hello)
    // println(f(B)) doesn't compile
    println(f(C)) // prints C(hello)
    println(f(D)) // prints D(hello)
    println(g(A)) // prints A
    println(g(C)) // prints C
    println(g(D)) // prints <function1>
    println(f(g(A))) // prints A(hello)
  }
}

object OtherApplyTest {

  case class C(s: String)

  case class D(s: String)
}

看起来你想做什么(以及你是怎么做的)可能是它在REPL或旧的Scala版本中不起作用。

答案 1 :(得分:2)

我从未遇到过Scala认为A(...)A.apply(...)不同的情况。在我的翻译中,f(A)工作正常:

scala> case class A(s: String)
defined class A

scala> def f[B, C](h: B => C) = h
f: [B, C](h: B => C)B => C

scala> f(A)
res1: String => A = A