码迷,mamicode.com
首页 > 其他好文 > 详细

遍历实体类属性

时间:2017-09-26 17:47:19      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:getc   declared   遍历   getname   row   declare   tac   ble   access   

public static void main(String[] args) throws IllegalArgumentException, IllegalAccessException {
// TODO Auto-generated method stub
Person p=new Person(3,"阿三");
for (Field field :p.getClass().getDeclaredFields()) {
field.setAccessible(true);
System.out.println(field.getName() + ":" +field.get(p));
}
}

 

遍历实体类属性

标签:getc   declared   遍历   getname   row   declare   tac   ble   access   

原文地址:http://www.cnblogs.com/yuezeyuan/p/7597680.html

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