摘要: 最近在研究java动态代理这块,以前也看了很多次java动态代理,感觉一直不是怎么明白,这两天看了看又明白了些,现给出我参考网上写的一个demojdk动态代理实现:View Code import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;public class DynamicProxy implements InvocationHandler { private Target target; public DynamicPr... 阅读全文
posted @ 2012-09-29 10:04 softwa 阅读(279) 评论(0) 推荐(0) 编辑