A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 咖啡苏克 中级黑马   /  2014-7-29 19:24  /  766 人查看  /  0 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

第一种:

//获取动态类的字节码文件
Class clazzProxy = Proxy.getProxyClass(类加载器Collection.class.getClassLoder,接口Collection.class);
//获取动态类的构造方法(带参数),动态类无不带参构造
Constructor constructor = clazzProxy.getConstructor(InvocationHandler.class);
//调用构造方法,参数为InvocationHandler接口的实现类对象
//MyInvocationhandler为实现InvocationHandler接口的类作为参数传入
Collection proxy = (Collection) constructor.newInstance(new MyInvocationhandler());
//因为动态类实现了Collection,所以是Collection类型
System.out.println(proxy);

第二种:

Collection proxy2 = (Collection) constructor .newInstance(new InvocationHandler() {

        public Object invoke(Object proxy, Method method,Object[] args) throws Throwable {
        return null;
        }

});
// 这种方式同第一种类似,只不过是将参数换成实现InvocationHandler接口的子类,而且是匿名内部类


第三种:
//Proxy的静态方法newProxyInstance,public static Object newProxyInstance(ClassLoader loader,
//                                     Class<?>[] interfaces,
//                                      InvocationHandler h)


final ArrayList target=new ArrayList();

Collection proxy3 = (Collection) Proxy.newProxyInstance(

            Collection.class.getClassLoader(),
            new Class[] { Collection.class },

    new InvocationHandler() {

     public Object invoke(Object proxy, Method method,
       Object[] args) throws Throwable {
       retObj = method.invoke(target, args);

       return retObj;     

           }
    });

proxy3.add("abcd");
  System.out.println(proxy3);

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马