我可以使用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[_] = ???
原因是我有一个使用类型标签作为映射中键的API,但在某些时候我只有类型并删除了标签。
最佳答案
有可能的:
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])
关于scala - 从类型获取TypeTag?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27887386/