gpt4 book ai didi

scala - 如何使用类型标签/镜像在方法中获取构造函数参数?

转载 作者:行者123 更新时间:2023-12-01 09:49:06 25 4
gpt4 key购买 nike

对于案例类:

case class MyClass(param1: String, param2: String)

为什么这种反射方法:
import scala.reflect.runtime.universe._
import scala.reflect.runtime.currentMirror
import scala.reflect.runtime.{ universe => ru }

def getSettings[T](paramObj: T)(implicit tag: TypeTag[T]) {
val m = ru.runtimeMirror(getClass.getClassLoader)
val classType = ru.typeOf[T].typeSymbol.asClass
val cm = m.reflectClass(classType)
val constructor = tag.tpe.declaration(ru.nme.CONSTRUCTOR).asMethod
val constructorMethod = cm.reflectConstructor(constructor)
val args = constructor.asMethod.paramss.head map { p => (p.name.decoded, p.typeSignature) }
println(args)
}

当像这样调用时:
scala> getSettings(MyClass)
List()

有那个输出??构造函数不是 2 个参数吗??
我一定在这里遗漏了一些非常明显的东西。该文档并没有涵盖这样的场景。

http://docs.scala-lang.org/overviews/reflection/overview.html

最佳答案

getSettings(MyClass)
MyClass是类 MyClass 的伴生对象.它没有构造函数参数。

你应该像这样重写你的代码:
def getSettings[T]()(implicit tag: TypeTag[T]) {
...
}

scala> getSettings[MyClass]
List((param1,String), (param2,String))

关于scala - 如何使用类型标签/镜像在方法中获取构造函数参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17177427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com