遍历 Java 类中的所有字段
我有一个Java类,它有许多.Fields
我想遍历所有字段,并为空字段做一些事情。
例如,如果我的类是:
public class ClassWithStuff {
public int inty;
public stringy;
public Stuff;
//many more fields
}
在另一个位置,我会做一个对象,我想遍历类中的所有字段。有点像这样:ClassWithStuff
for (int i = 0; i < ClassWithStuff.getFields().size(); i++) {
//do stuff with each one
}
我有什么办法可以做到这一点吗?