反射

反射获取构造方法对象并且创建对象

通过反射获取构造方法并且创建对象

*                 1.通过反射获取字节码文件对象

*                 2.通过字节码文件对象获取构造方法对象  Constructor

*                         Constructor<?>[] getConstructors() // 获取公有修饰的构造方法对象

*                         Constructor<?>[] getDeclaredConstructors() // 获取所有的构造方法对象

*                         Constructor<T> getConstructor(Class<?>... parameterTypes)

*                         Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)

*/

public class ReflectDemo01 {

       public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, SecurityException {

               Class<?> c = Class.forName("com.sxt.reflectdemo2.Student");

               Constructor<?>[] constructors = c.getConstructors();

               for (Constructor<?> constructor : constructors) {

                       System.out.println(constructor);

               }

               System.out.println("----------------------------------");

               Constructor<?>[] declaredConstructors = c.getDeclaredConstructors();

               for (Constructor<?> constructor : declaredConstructors) {

                       System.out.println(constructor);

               }

               System.out.println("----------------------------------");

               // 获取所有的构造方法在开发中有意义? 没有什么实际意义,所以我们来获取单个构造方法

               // 获取无参构造方法

//                c.getConstructor(Class<?>... parameterTypes  Class  class)

               Constructor<?> constructor = c.getConstructor();

               System.out.println(constructor);

               Constructor<?> constructor2 = c.getConstructor(String.class,int.class);

               System.out.println(constructor2);

               // 获取私有构造方法

               // java.lang.NoSuchMethodException

//                Constructor<?> constructor3 = c.getConstructor(String.class);

//                System.out.println(constructor3);

               Constructor<?> constructor3 = c.getDeclaredConstructor(String.class);

               System.out.println(constructor3);

       }

}

/*

* 通过反射获取构造方法对象并且创建对象

*

* 反射之前的做法:

*         Student s = new Student();

*

* 反射之后:

*                 1.获取字节码文件对象

*                 2.通过字节码文件对象获取构造方法对象

*                 3.通过构造方法对象创建对象

*                                  T newInstance(Object... initargs)

*/

public class ReflectDemo02 {

       public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, SecurityException,

                       InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException,

                       FileNotFoundException, IOException {

               Properties prop = new Properties();

               prop.load(new FileReader("prop.txt"));

               String value = prop.getProperty("ClassName");

               Class<?> c = Class.forName(value);

               Constructor<?> con = c.getConstructor();

               Object obj = con.newInstance();

               System.out.println(obj);

               Student student = (Student) obj;

               System.out.println(student.getName());

               // 我想要调用带全参数的怎么办

               Constructor<?> constructor = c.getConstructor(String.class, int.class);

               Object obj2 = constructor.newInstance("隔壁老王", 50);

               System.out.println(obj2);

               // 我想获取私有构造方法并且造对象

               // java.lang.NoSuchMethodException:

               // Constructor<?> constructor2 = c.getConstructor(String.class);

               Constructor<?> constructor2 = c.getDeclaredConstructor(String.class);

               // java.lang.IllegalAccessException

               // 暴力访问

               constructor2.setAccessible(true);

               Object obj3 = constructor2.newInstance("隔壁老李");

               System.out.println(obj3);

       }

}

反射获取成员变量对象并且赋值


通过反射获取成员变量对象

*                 Field

*

* Field[] getFields()  获取公有修饰的成员变量对象

* Field[] getDeclaredFields()  获取所有成员变量对象

* Field getField(String name) 获取指定的公共成员变量对象

* Field getDeclaredField(String name) 获取指定任意成员变量对象

*

* Object get(Object obj) 返回指定对象上此 Field 表示的字段的值。

*/

public class ReflectDemo01 {

       public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException, SecurityException {

               Class<?> c = Class.forName("com.sxt.reflectdemo3.Student");


               Field[] fields = c.getFields();

               for (Field field : fields) {

                       System.out.println(field);

               }


               System.out.println("---------------");

               Field[] declaredFields = c.getDeclaredFields();

               for (Field field : declaredFields) {

                       System.out.println(field);

               }


               System.out.println("---------------");

               // declaredFields

               Field field = c.getField("address");

               System.out.println(field);

               System.out.println("---------------");

               Field field2 = c.getDeclaredField("name");

               System.out.println(field2);


       }

}

public class ReflectDemo02 {

       public static void main(String[] args) throws Exception {

               Class<?> c = Class.forName("com.sxt.reflectdemo3.Student");

               // 给sex属性赋值,值为女

               Field sexFiled = c.getDeclaredField("sex");

               System.out.println(sexFiled);

               // 反射之前 Student s = new Student(); s.sex = "女";

               // 反射之后

               Constructor<?> con = c.getDeclaredConstructor();

               Object obj = con.newInstance();

               //  Object get(Object obj) 返回指定对象上此 Field 表示的字段的值。

               sexFiled.set(obj, "女");

               System.out.println(obj);


               Field nameField = c.getDeclaredField("name");

               nameField.setAccessible(true);

               nameField.set(obj, "隔壁老张");

               System.out.println(obj);

               System.out.println(nameField.get(obj));

       }

}

反射获取成员方法对象并且调用

通过反射获取成员方法对象并且调用

* c.getMethods() 获取所有公有方法 包括父类继承过来的成员

* c.getDeclaredMethods() 获取本类中所有方法,包括私有

*

*  Method getMethod(String name, Class<?>... parameterTypes)

*  Method getDeclaredMethod(String name, Class<?>... parameterTypes)

*                  第一个参数是方法名称, 第二个参数是参数类型列表

*  

*  Object invoke(Object obj, Object... args)

*  

*  使用反射书写一个能够给任意对象设置任意的值的方法

*/

public class ReflectDemo01 {

       public static void main(String[] args) throws Exception {

               Class<?> c = Class.forName("com.sxt.reflectdemo4.Student");


               Constructor<?> con = c.getDeclaredConstructor();


               Object obj = con.newInstance();


               Method[] methods = c.getMethods();


               for (Method method : methods) {

                       System.out.println(method);

               }

               System.out.println("--------------------------");

               Method[] declaredMethods = c.getDeclaredMethods();

               for (Method method : declaredMethods) {

                       System.out.println(method);

               }

               System.out.println("--------------------------");


               // 获取无参方法show并且调用

               Method method = c.getDeclaredMethod("show");

               System.out.println(method);

               method.invoke(obj);

               System.out.println("--------------------------");


               // public void method(String s)

               Method method2 = c.getDeclaredMethod("method", String.class);

               System.out.println(method2);

               method2.invoke(obj, "Hello");

               System.out.println("--------------------------");

               // public String concat(int a, String s, double d)

               Method method3 = c.getDeclaredMethod("concat", int.class, String.class, double.class);

               System.out.println(method3);

               Object result = method3.invoke(obj, 20, "张三", 2.5);

               System.out.println(result);

               System.out.println("--------------------------");

               //private void show2()

               Method method4 = c.getDeclaredMethod("show2");

               method4.setAccessible(true);

               System.out.println(method4);

               method4.invoke(obj);


               // int getModifiers()

               int modifiers = method4.getModifiers();

               System.out.println(modifiers);


       }

}

public class Student {

       private String name;

       int age;

       public String address;

       protected String sex;


       public Student() {

               super();

       }

       public Student(String name, int age) {

               super();

               this.name = name;

               this.age = age;

       }


       private Student(String name) {

               this.name = name;

       }


       protected Student(String name,String address) {

               this.address = address;

               this.name = name;

       }


       Student(int age){

               this.age = age;

       }

       public String getName() {

               return name;

       }

       public void setName(String name) {

               this.name = name;

       }

       public int getAge() {

               return age;

       }

       public void setAge(int age) {

               this.age = age;

       }

       @Override

       public String toString() {

               return "Student [name=" + name + ", age=" + age + ", address=" + address + ", sex=" + sex + "]";

       }

       @Override

       public int hashCode() {

               final int prime = 31;

               int result = 1;

               result = prime * result + age;

               result = prime * result + ((name == null) ? 0 : name.hashCode());

               return result;

       }

       @Override

       public boolean equals(Object obj) {

               if (this == obj)

                       return true;

               if (obj == null)

                       return false;

               if (getClass() != obj.getClass())

                       return false;

               Student other = (Student) obj;

               if (age != other.age)

                       return false;

               if (name == null) {

                       if (other.name != null)

                               return false;

               } else if (!name.equals(other.name))

                       return false;

               return true;

       }

       public String getAddress() {

               return address;

       }

       public void setAddress(String address) {

               this.address = address;

       }


       public void show() {

               System.out.println("我是无参show方法");

       }


       public void method(String s) {

               System.out.println("我是带Sting参数的method方法:" + s);


       }


       public String concat(int a, String s, double d) {

               return a + s + d;

       }


       private void show2() {

               System.out.println("我是私有方法");

       }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容