Java反射基础API应用

java 反射常用方法概览

脑图地址

image.png

测试类

public class Animal {
    public boolean sex;
    private int age;
    public void eat(){
        System.out.print("吃东西");
    }

}
public class Dog  extends  Animal{
    public int height;
    private int weight;



        //---------------构造方法-------------------
        //(默认的构造方法)
        Dog(String str){
            System.out.println("(默认)的构造方法 s = " + str);
        }

        //无参构造方法
        public Dog(){
            System.out.println("调用了公有、无参构造方法执行了。。。");
        }

        //有一个参数的构造方法
        public Dog(char name){
            System.out.println("姓名:" + name);
        }

        //有多个参数的构造方法
        public Dog(String name ,int age){
            System.out.println("身高:"+height+" 重量:"+ weight);//这的执行效率有问题,以后解决。
        }

        //受保护的构造方法
        protected Dog(boolean n){
            System.out.println("受保护的构造方法 n = " + n);
        }

        //私有构造方法
        private Dog(int age){
            System.out.println("私有的构造方法   身高:"+ height);
        }

    @Override
    public String toString() {
        return "Dog{" +
                "height=" + height +
                ", weight=" + weight +
                ", sex=" + sex +
                '}';
    }


    //**************成员方法***************//
    public void show1(String s){
        System.out.println("调用了:公有的,String参数的show1(): s = " + s);
    }
    protected void show2(){
        System.out.println("调用了:受保护的,无参的show2()");
    }
    void show3(){
        System.out.println("调用了:默认的,无参的show3()");
    }
    private String show4(int age){
        System.out.println("调用了,私有的,并且有返回值的,int参数的show4(): age = " + age);
        return "xxxxx";
    }

}

获取类的三种方法

   //1、全类名

        try {
            Class class01 =  Class.forName("com.example.javatest.reflect.Dog");
            System.out.print(class01.getSimpleName());
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }

        //2、类名
        Class class02 = Dog.class;
        System.out.print(class02.getSimpleName());

        //3、对象
        Class class03  =  new Dog().getClass();
        System.out.print(class03.getSimpleName());

通过class可以直接调用newInstance,进行创建对象

        //获取类型之后,可以通过类型创建对象
        try {
            Dog o = (Dog)class02.newInstance();//调用的是无参数的构造方法。
            o.eat();
        } catch (InstantiationException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }

注意点

  • 上面调用的默认是无参数的构造方法,如果你把这个默认构造方法声明成私有,那么就会有如下错误:
java.lang.IllegalAccessException: can not access a member of class com.example.javatest.reflect.Dog with modifiers "private"
  • 此处构造方法调用方式是:类对象,直接调用自己内部的方法Dog o = (Dog)class02.newInstance()

  • 如果想调用有参数的构造方法,就需要先反射获取对应的构造方法,进行使用。

获取类的构造方法,并创建对象

        //1.加载Class对象
        Class clazz = Class.forName("com.example.javatest.reflect.Dog");

        //2.获取所有公有构造方法
        System.out.println("**********************所有公有构造方法*********************************");
        Constructor[] conArray = clazz.getConstructors();

        for(Constructor c : conArray){
            System.out.println(c);
        }

        System.out.println("************所有的构造方法(包括:私有、受保护、默认、公有)***************");
        conArray = clazz.getDeclaredConstructors();
        for(Constructor c : conArray){
            System.out.println(c);
        }

        System.out.println("*****************获取公有、无参的构造方法*******************************");
        Constructor con = clazz.getConstructor(null);
        //1>、因为是无参的构造方法所以类型是一个null,不写也可以:这里需要的是一个参数的类型,切记是类型
        //2>、返回的是描述这个无参构造函数的类对象。

        System.out.println("con = " + con);
        //调用构造方法
        Object obj = con.newInstance();
        //  System.out.println("obj = " + obj);
        //  Student stu = (Student)obj;

        System.out.println("******************获取私有构造方法,并调用*******************************");
        con = clazz.getDeclaredConstructor(char.class);
        System.out.println(con);
        //调用构造方法
        con.setAccessible(true);//暴力访问(忽略掉访问修饰符)
        obj = con.newInstance('旺');

输出结果:

**********************所有公有构造方法*********************************
public com.example.javatest.reflect.Dog(java.lang.String,int)
public com.example.javatest.reflect.Dog(char)
public com.example.javatest.reflect.Dog()
************所有的构造方法(包括:私有、受保护、默认、公有)***************
private com.example.javatest.reflect.Dog(int)
protected com.example.javatest.reflect.Dog(boolean)
public com.example.javatest.reflect.Dog(java.lang.String,int)
public com.example.javatest.reflect.Dog(char)
public com.example.javatest.reflect.Dog()
com.example.javatest.reflect.Dog(java.lang.String)
*****************获取公有、无参的构造方法*******************************
con = public com.example.javatest.reflect.Dog()
调用了公有、无参构造方法执行了。。。
******************获取私有构造方法,并调用*******************************
public com.example.javatest.reflect.Dog(char)
姓名:旺

注意点

  • 获取有参数构造方法,传入的是方法参数的类型,而不是具体的参数。
  • 如果要调用私有的构造方法注意设置 con.setAccessible(true);//暴力访问(忽略掉访问修饰符)
  • 此处构造方法的调用方式是:构造方法对象,调用自己的方法:obj = con.newInstance('旺');

获取成员变量,并修改

 private static void getField() throws ClassNotFoundException, NoSuchFieldException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        Class stuClass =  Class.forName("com.example.javatest.reflect.Dog");

       //2.获取字段
        System.out.println("************获取所有公有的字段(包括父类公有字段)********************");
        Field[] fieldArray = stuClass.getFields();
        for(Field f : fieldArray){
            System.out.println(f);
        }
        System.out.println("************获取所有的字段(包括私有、受保护、默认的)********************");
        fieldArray = stuClass.getDeclaredFields();
        for(Field f : fieldArray){
            System.out.println(f);
        }
        System.out.println("*************获取公有字段**并调用***********************************");
        Field f = stuClass.getField("height");
        System.out.println(f);
        //获取一个对象
        Object obj = stuClass.getConstructor().newInstance();
        //为字段设置值
        f.set(obj, 111);//为对象中的height属性赋值--》stu.height = 111
        //验证
        Dog stu = (Dog)obj;
        System.out.println("验证height:" + stu.height);

        System.out.println("**************获取私有字段****并调用********************************");
        f = stuClass.getDeclaredField("weight");
        System.out.println(f);
        f.setAccessible(true);//暴力反射,解除私有限定
        f.set(obj, 188);
        System.out.println("验证weight:" + stu);

    }

返回结果

************获取所有公有的字段(包括父类公有字段)********************
public int com.example.javatest.reflect.Dog.height
public boolean com.example.javatest.reflect.Animal.sex
************获取所有的字段(包括私有、受保护、默认的)********************
public int com.example.javatest.reflect.Dog.height
private int com.example.javatest.reflect.Dog.weight
*************获取公有字段**并调用***********************************
public int com.example.javatest.reflect.Dog.height
调用了公有、无参构造方法执行了。。。
验证height:111
**************获取私有字段****并调用********************************
private int com.example.javatest.reflect.Dog.weight
验证weight:Dog{height=111, weight=188, sex=false}

获取成员方法,并调用

    private static void getMethod() throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        //1.加载Class对象
        Class stuClass = Class.forName("com.example.javatest.reflect.Dog");

        //2.获取所有公有方法
        System.out.println("***************获取所有的”公有“方法(包括父类公有方法)*******************");
        stuClass.getMethods();
        Method[] methodArray = stuClass.getMethods();
        for(Method m : methodArray){
            System.out.println(m);
        }
        System.out.println("***************获取所有的方法,包括私有的*******************");
        methodArray = stuClass.getDeclaredMethods();
        for(Method m : methodArray){
            System.out.println(m);
        }
        System.out.println("***************获取公有的show1()方法*******************");
        Method m = stuClass.getMethod("show1", String.class);
        System.out.println(m);
        //实例化一个Student对象
        Object obj = stuClass.getConstructor().newInstance();
        m.invoke(obj, "哈哈哈哈啊哈");

        System.out.println("***************获取私有的show4()方法******************");
        m = stuClass.getDeclaredMethod("show4", int.class);
        System.out.println(m);
        m.setAccessible(true);//解除私有限定
        Object result = m.invoke(obj, 20);//需要两个参数,一个是要调用的对象(获取有反射),一个是实参
        System.out.println("返回值:" + result);

    }

输出结果

***************获取所有的”公有“方法(包括父类公有方法)*******************
public java.lang.String com.example.javatest.reflect.Dog.toString()
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
public void com.example.javatest.reflect.Animal.eat()
public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException
public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException
public final void java.lang.Object.wait() throws java.lang.InterruptedException
public boolean java.lang.Object.equals(java.lang.Object)
public native int java.lang.Object.hashCode()
public final native java.lang.Class java.lang.Object.getClass()
public final native void java.lang.Object.notify()
public final native void java.lang.Object.notifyAll()
***************获取所有的方法,包括私有的*******************
public java.lang.String com.example.javatest.reflect.Dog.toString()
protected void com.example.javatest.reflect.Dog.show2()
void com.example.javatest.reflect.Dog.show3()
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
private java.lang.String com.example.javatest.reflect.Dog.show4(int)
***************获取公有的show1()方法*******************
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
调用了公有、无参构造方法执行了。。。
调用了:公有的,String参数的show1(): s = 哈哈哈哈啊哈
***************获取私有的show4()方法******************
private java.lang.String com.example.javatest.reflect.Dog.show4(int)
调用了,私有的,并且有返回值的,int参数的show4(): age = 20
返回值:xxxxx
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343