我们的库使用TypeTags,但现在我们需要与另一个需要Manifests的库交互。有什么简单的方法可以从TypeTag创建清单吗?
如果你天真地试图在出现TypeTag
时调用Manifest
,编译器会提示你解决方案:
import reflect.runtime.universe._
import reflect.ClassTag
def test[A : TypeTag] = manifest[A]
error: to create a manifest here, it is necessary to interoperate with the type
tag `evidence$1` in scope.
however typetag -> manifest conversion requires a class tag for the corresponding
type to be present.
to proceed add a class tag to the type `A` (e.g. by introducing a context bound)
and recompile.
def test[A : TypeTag] = manifest[A]
^
因此,如果作用域中有ClassTag
,编译器将能够创建必要的Manifest
。你有两个选择:
在
TypeTag
所在的位置添加第二个上下文绑定,如:def test[A : TypeTag : ClassTag] = manifest[A] // this compiles
或者先将
TypeTag
转换为ClassTag
,然后请求Manifest
:def test[A](implicit ev: TypeTag[A]) = { // typeTag to classTag implicit val cl = ClassTag[A]( ev.mirror.runtimeClass( ev.tpe ) ) // with an implicit classTag in scope, you can get a manifest manifest[A] }
gourlysam的anwer使用class〔_〕,因此类型参数被删除。我提出了一个在这里保留类型参数的实现:如何在TypeTag到Manifest的转换过程中维护类型参数?
这是代码:
def toManifest[T:TypeTag]: Manifest[T] = {
val t = typeTag[T]
val mirror = t.mirror
def toManifestRec(t: Type): Manifest[_] = {
val clazz = ClassTag[T](mirror.runtimeClass(t)).runtimeClass
if (t.typeArgs.length == 1) {
val arg = toManifestRec(t.typeArgs.head)
ManifestFactory.classType(clazz, arg)
} else if (t.typeArgs.length > 1) {
val args = t.typeArgs.map(x => toManifestRec(x))
ManifestFactory.classType(clazz, args.head, args.tail: _*)
} else {
ManifestFactory.classType(clazz)
}
}
toManifestRec(t.tpe).asInstanceOf[Manifest[T]]
}