码迷,mamicode.com
首页 > 编程语言 > 详细

java遍历类的字段属性及其字段值

时间:2017-11-17 16:19:47      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:ref   except   access   new   exception   ted   field类   generate   数组   

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遍历类的字段属性及其字段值

标签:ref   except   access   new   exception   ted   field类   generate   数组   

原文地址:http://www.cnblogs.com/kinglas/p/7851732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!