java遍历类的字段属性及其字段值
Posted kinglas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java遍历类的字段属性及其字段值相关的知识,希望对你有一定的参考价值。
public class ReflectUtil {
public static void reflect(Object o){
//获取参数类
Class cls = o.getClass();
//将参数类转换为对应属性数量的Field类型数组(即该类有多少个属性字段 N 转换后的数组长度即为 N)
Field[] fields = cls.getDeclaredFields();
for(int i = 0;i < fields.length; i ++){
Field f = fields[i];
f.setAccessible(true);
try {
//f.getName()得到对应字段的属性名,f.get(o)得到对应字段属性值,f.getGenericType()得到对应字段的类型
System.out.println("属性名:"+f.getName()+";属性值:"+f.get(o)+";字段类型:" + f.getGenericType());
} catch (IllegalArgumentException | IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static void main(String[] args) {
Student s = new Student();
s.setName("张三");
s.setAge(12);
s.setGrade(89);
reflect(s);
}
}
以上是关于java遍历类的字段属性及其字段值的主要内容,如果未能解决你的问题,请参考以下文章
C++遍历获得一个类的所有属性名,对该类的实例的所有属性的值 ...~~