TypeRef
是 的一个特例Type
:
abstract type TypeRef >: Null <: Universe.TypeRefApi with Universe.Type
您可以通过模式匹配检查 aType
是否实际上是 a :TypeRef
tpe match {
case TypeRef(prefix, sym, args) =>
// or alternately
case typeRef: TypeRef =>
}
TypeTag[A]
是一种访问Type
1) 适用于不同镜像的方法;2) 可以由编译器从类型参数中自动生成(注意Type
不是泛型的)。
要转换Type
为TypeTag
,如何手动创建 TypeTag?:
import scala.reflect.runtime.universe._
def typeToTypeTag[T](
tpe: Type,
mirror: reflect.api.Mirror[reflect.runtime.universe.type]
): TypeTag[T] = {
TypeTag(mirror, new reflect.api.TypeCreator {
def apply[U <: reflect.api.Universe with Singleton](m: reflect.api.Mirror[U]) = {
assert(m eq mirror, s"TypeTag[$tpe] defined in $mirror cannot be migrated to $m.")
tpe.asInstanceOf[U#Type]
}
})
}