java – 不能使用getDeclaredFields()来检索Scala类的字段

前端之家收集整理的这篇文章主要介绍了java – 不能使用getDeclaredFields()来检索Scala类的字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用 ScalaJava库(JOhm)并注意到当lib尝试使用类似于model.getClass().getDeclaredFields()的东西读取我的Scala类的字段时,它会失败.

然后我决定尝试使用Scala解释器中的简单示例:

scala> import java.lang.reflect.Field;
import java.lang.reflect.Field

scala> class myClass(attribute1: String,attribute2: String,attribute3: String)
defined class myClass

scala> val myInstance = new myClass("value1","value2","value3")
myInstance: myClass = myClass@7055c39a

scala> myInstance.getClass().getDeclaredFields()
res0: Array[java.lang.reflect.Field] = Array()

实际上,我们根本没有任何领域.

现在,如果我尝试这个怎么办:

scala> class myClass2(attribute1: String,attribute3: String) { override def toString = this.attribute1 }
defined class myClass2

scala> val myInstance2 = new myClass2("value1","value3")
myInstance2: myClass2 = value1

scala> myInstance2.getClass().getDeclaredFields()
res1: Array[java.lang.reflect.Field] = Array(private final java.lang.String myClass2.attribute1)

因此,如果使用其中一个类’方法中的一个字段,则可以通过getDeclaredFields()找到它.我在这里错过了什么?

解决方法

您缺少的是构造函数参数不会自动提升为字段.

相反,它们只有在使用时才会被提升.你使用了attribute1,所以它变成了一个字段;你没有使用其他人,所以他们没有.

如果将它们声明为val或var,或者类是一个case类,它们也将被提升为字段(因为它们实际上会生成访问器方法,因此被使用).

原文链接:https://www.f2er.com/java/239827.html

猜你在找的Java相关文章