我一直在论坛和 Google 上搜索有关 Scala 类型擦除问题的答案。但是,我找不到任何可以回答我的问题的东西。
我在与 ParamClass 的类型参数匹配的对象上进行模式匹配。我需要对 bar 方法的传入对象类型进行模式匹配。我已经看到了解决方案,例如
bar[X](a : X)(implicit m : Manifest[X])
这将解决我的问题,但我不能使用它,因为 bar 方法是一种被覆盖的方法。(其实就是Akka actor框架中的receive偏函数)。代码如下,应该是不言自明的:
class ParamClass[A : Manifest] {
def bar(x : Any) = x match {
case a: A => println("Found A: " + a)
case _ => println("No match: " + x)
}
}
object ErasureIssue {
def main(args: Array[String]) {
val clz = new ParamClass[Int]
clz.bar("faf")
clz.bar(2.3)
clz.bar(12) // this should match, but does not
}
}
ErasureIssue.main(null)
非常感谢任何有关解决此问题的帮助。我正在使用 Scala 2.9.1,顺便说一句。
-J