作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个多态方法,它将自定义案例类作为类型参数。现在,为了支持多个案例类(在配置文件中定义为字符串),我需要将字符串转换为案例类的 tagType
。
为此,我使用 runtimeMirror
方法从 String
中获取类,然后我使用 manifestToTypeTag
获取 tagType
( Getting TypeTag from a classname string )
import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe
import scala.reflect.ManifestFactory
// My polymorphic method
def printMe[T](l: List[T])(implicit typeTag: TypeTag[T]): Unit = println(l)
// This works:
printMe(List("fdfg"))(typeTag[java.lang.String])
// Now, I want to build the typeTag dynamically from a String
val className = "java.lang.String" // a Custom case class
val mirror = universe.runtimeMirror(getClass.getClassLoader)
val cls = Class.forName(className)
// Getting the typeTag from the class name
val t = internal.manifestToTypeTag(mirror,ManifestFactory.classType(cls))
// Call of the method with the generated typeTag
printMe(List("fdfg"))(t)
// Compilation error
Error:(12, 31) type mismatch;
found : scala.reflect.api.Universe#TypeTag[Nothing]
required: reflect.runtime.universe.TypeTag[String]
Note: Nothing <: String, but trait TypeTag is invariant in type T.
You may wish to investigate a wildcard type such as `_ <: String`. (SLS 3.2.10)
printMe(List("fdfg"))(t)
但是,当我将 typeTag
传递到我的多态方法时,出现了如上所示的“类型匹配编译错误”。实际上,我的多态方法需要 TypeTag[MyClassToto]
,而我生成的 TypeTag
是 TypeTag[Nothing]
。
我想知道是否可以转换我得到的 TypeTag
,或者我可能必须更改我的多态方法的签名?
最佳答案
尝试来自 https://stackoverflow.com/a/23792152/5205022 的建议:
def printMe[T](l: List[T])(implicit typeTag: TypeTag[T]): Unit = println(l)
def stringToTypeTag[A](name: String): TypeTag[A] = {
val c = Class.forName(name)
val mirror = runtimeMirror(c.getClassLoader)
val sym = mirror.staticClass(name)
val tpe = sym.selfType
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.")
})
}
printMe(List("fdfg"))(stringToTypeTag("java.lang.String"))
关于scala - 从 String 创建 typeTag 并将其传递给多态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56649872/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!