我正在挖掘新的 scala 反射 api,但无法弄清楚为什么以下代码段不能按预期工作。给定层次结构(尽量简化):
import scala.reflect.runtime.universe._
trait TF[A] {
implicit def t: TypeTag[A]
def f[T <: A: TypeTag]: PartialFunction[Any, A] = {
case msg: T if typeOf[T] =:= typeOf[A] => msg
}
}
class TFilter[T: TypeTag] extends TF[T] {
def t = typeTag[T]
}
case class Foo(x: Int)
我期望方法f
来过滤给定类型的对象。所以下面的代码片段应该返回Seq[Foo]
val messages = Seq(1, "hello", Foo(1))
val tFilter = new TFilter[Foo]
messages collect tFilter.f[Foo]
它实际上返回Seq[Foo]
但其他消息未过滤,这听起来像一个错误。
res1: Seq[Foo] = List(1, hello, Foo(1))
问题。我是用TypeTag
错了还是新反射api的缺陷?
PS0。试过Scala 2.10.0-RC1
和2.10.0-RC2
PS1。解决方法是替换TypeTag
为,因此序列上Manifest
的以下代码将按预期返回。collect
List(Foo(1))
trait MF[A] {
implicit def m: Manifest[A]
def f[T <: A: Manifest]: PartialFunction[Any, A] = {
case msg: T if typeOf[T] =:= typeOf[A] => msg
}
}
class MFilter[T: Manifest] extends MF[T] {
def m = manifest[T]
}
更新:与新Scala 2.10.0-RC2
版本相同。