码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA 反射 动态代理

时间:2020-02-24 20:46:33      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:ade   lib   span   cat   info   ring   nbsp   png   color   

摘自b站尚硅谷JAVA视频教程

技术图片

 

 技术图片

interface HelloInterface {
    String sayHello();
}
class Hello implements HelloInterface{
    @Override
    public String sayHello() {
        System.out.println("Hello zhanghao!");
        return "Hello";
    }
}
class ProxyHandler implements InvocationHandler {
    private Object object;
    public ProxyHandler(Object object){
        this.object = object;
    }
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("Before invoke "  + method.getName());
        Object value = method.invoke(object, args);
        System.out.println("After invoke " + method.getName());
        return value;
    }
}
public class proxyTest {
    public static void main(String[] args) {
        HelloInterface hello = new Hello();

        InvocationHandler handler = new ProxyHandler(hello);

        HelloInterface proxyHello = (HelloInterface) Proxy.newProxyInstance(hello.getClass().getClassLoader(), hello.getClass().getInterfaces(), handler);

        Object value = proxyHello.sayHello();
        System.out.println(value);
    }

 

JAVA 反射 动态代理

标签:ade   lib   span   cat   info   ring   nbsp   png   color   

原文地址:https://www.cnblogs.com/superxuezhazha/p/12358437.html

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