在Scala类的对象中获取带有值的所有公共字段

时间:2019-04-18 15:22:24

标签: scala reflection

如何从中获取所有公共字段(包括继承的字段)及其值 Scala类的对象?

此:

class A(val a: String)

class B(val b: String) extends A("a")

val b = new B("b")

b.getClass.getFields

返回空列表。

0 个答案:

没有答案