反射的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反射的使用相关的知识,希望对你有一定的参考价值。
1.反射获取属性值
Apple apple = new Apple("香", 34.8f); Field field = Apple.class.getDeclaredField("price"); Field[] fields = Apple.class.getFields(); for (Field field2 : fields) { System.out.println(field2.getName()); } System.out.println("-----"); fields = Apple.class.getDeclaredFields(); for (Field field2 : fields) { System.out.println(field2.getName()); } System.out.println("-----"); field.setAccessible(true); float money = field.getFloat(apple); System.out.println(money);
结果:
color ----- taste //私有属性 price //私有属性 color //公有属性 size //包级私有属性 shape //受保护属性 ----- 34.8
以上是关于反射的使用的主要内容,如果未能解决你的问题,请参考以下文章