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

JVM(四),什么是反射

时间:2019-02-12 20:14:52      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:throws   sample   The   创建   family   win   sam   png   get   

四、什么是反射

1.反射理论

 技术图片

2.反射实践

(1)创建Robot

public class Robot {
    private String name;
    public void sayHi(String helloSentence){
        System.out.println(helloSentence + " " + name);
    }
    private String throwHello(String tag){
        return "Hello " + tag;
    }
    static {
        System.out.println("Hello Robot");
    }
}

 (2)各种操作

public class ReflectSample {
    public static void main(String[] args) throws Exception{
        Class rc = Class.forName("com.interview.javabasic.reflect.Robot");
        Robot r = (Robot) rc.newInstance();
        System.out.println("Class name is " + rc.getName());

        //调用私有方法rc.getDeclaredMethod
        Method getHello = rc.getDeclaredMethod("throwHello", String.class);
        getHello.setAccessible(true);
        Object str = getHello.invoke(r, "Bob");
        System.out.println("getHello result is " + str);

        //调用PUBLIC方法rc.getMethod
        Method sayHi = rc.getMethod("sayHi", String.class);
        sayHi.invoke(r, "Welcome");

        //设置私有属性
        Field name = rc.getDeclaredField("name");
        name.setAccessible(true);
        name.set(r, "Alice");
        sayHi.invoke(r, "Welcome");

    }
}

 

JVM(四),什么是反射

标签:throws   sample   The   创建   family   win   sam   png   get   

原文地址:https://www.cnblogs.com/xzmxddx/p/10366867.html

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