Java反射机制和类的封装性
编程技术  /  houtizong 发布于 3年前   112
package cn.henu.lz;public class Person {private String name;private int age;private String safe;//该属性无setter和getter方法public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public String getName() {return this.name;}public int getAge() {return this.age;}public String toString() {return "姓名:" + this.name + ";年龄:" + this.age;}}
package cn.henu.lz;import java.lang.reflect.Method;import java.lang.reflect.Field;import java.lang.reflect.Modifier;import cn.henu.lz.Person;public class Reflect {public void getAll(Person person) {try {Class<?> cla = Class.forName(person.getClass().getName());Method m[] = cla.getDeclaredMethods();//取得当前类的所有方法Field f[] = cla.getDeclaredFields();//取得当前类的所有属性System.out.println(cla.getSuperclass().getName());//取得当前类所继承的父类System.out.println("--------------------------------");for(Method i:m) {System.out.println(i.getReturnType());System.out.println(i);}System.out.println("--------------------------------");for(Field i:f) {System.out.println(String.class);System.out.println(i.getName()+"---"+i.getGenericType()+"---"+Modifier.toString(i.getModifiers()));}}catch(ClassNotFoundException ce) {ce.printStackTrace();}}public void quote(String person) {Object obj = null;try {Class<?> cla = Class.forName(person);//通过反射引用一个新对象Person p = (Person)cla.newInstance();p.setName("pp");p.setAge(20);System.out.println(p);//以下代码段测试setAccessible()方法的功能{obj = cla.newInstance();Field sf = cla.getDeclaredField("safe");sf.setAccessible(true);sf.set(obj,"not safe");System.out.println(sf.get(obj));}}catch(Exception e) {e.printStackTrace();}}}
package cn.henu.lz;import cn.henu.lz.Person;import cn.henu.lz.Reflect;public class TestReflect {public static void main(String[] args) {Person person = new Person();Reflect ref = new Reflect();ref.getAll(person);System.out.println("--------------------------------");ref.quote("cn.henu.lz.Person");}}
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接