从类型中获取TypeTag?

时间:2015-01-11 13:04:20

标签: scala reflection

我可以使用Type方法从TypeTag[A]获得tpe。但我还可以从类型中恢复类型标记吗?

import scala.reflect.runtime.{universe => ru}
import ru.{Type, TypeTag}

def forward[A](implicit tt: TypeTag[A]): Type = tt.tpe

def backward(t: Type): TypeTag[_] = ???

原因是我有一个使用type-tags作为地图键的API,但在某些时候我只有类型并删除了标记。

1 个答案:

答案 0 :(得分:10)

有可能:

import scala.reflect.runtime.universe._
import scala.reflect.api

val mirror = runtimeMirror(getClass.getClassLoader)  // whatever mirror you use to obtain the `Type`

def backward[T](tpe: Type): TypeTag[T] =
  TypeTag(mirror, new api.TypeCreator {
    def apply[U <: api.Universe with Singleton](m: api.Mirror[U]) =
      if (m eq mirror) tpe.asInstanceOf[U # Type]
      else throw new IllegalArgumentException(s"Type tag defined in $mirror cannot be migrated to other mirrors.")
  })

assert(backward[String](forward[String]) == typeTag[String])