如何在TypeTag到Manifest转换期间维护类型参数?

时间:2015-03-18 16:31:23

标签: scala

使用此问题的答案Is it possible to convert a TypeTag to a Manifest?,我可以将TypeTag转换为Manifest。

不幸的是,使用此方法会丢失类型参数。由于您正在使用runtimeClass进行转换。这是一个示例代码,用于说明这一点:

import scala.reflect.ClassTag
import scala.reflect.runtime.universe._

// From: https://stackoverflow.com/questions/23383814/is-it-possible-to-convert-a-typetag-to-a-manifest
def getManifestFromTypeTag[T:TypeTag] = {
  val t = typeTag[T]
  implicit val cl = ClassTag[T](t.mirror.runtimeClass(t.tpe))
  manifest[T]
}

// Soon to be deprecated way
def getManifest[T](implicit mf: Manifest[T]) = mf

getManifestFromTypeTag[String] == getManifest[String]
//evaluates to true

getManifestFromTypeTag[Map[String, Int]] == getManifest[Map[String, Int]]
//evalutes to false. Due the erasure.

从TypeTag转换为Manifest时,有没有办法保留类型参数?

1 个答案:

答案 0 :(得分:1)

ManifestFactory有一个名为classType的方法,允许使用类型参数创建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]]
  }