下面是个人笔记,希望对你有帮助
/*static Object newProxyInstance(ClassLoader loader, Class<?>[] *interfaces, InvocationHandler h)
*正在执行的add()方法:原形
* add(args){
* public Object invoke(Object proxy,Method method,Object[] args){
* //调用target 的add方法 的代码method.invoke()
* }
* }
*/
生成代理的原理分析:
1、 通过目标实例,得到加载目标实例的类加载器,及目标类的实现的所有接口;
2、 通过InvocationHandler接口产生个子类对象:调用处理器;
3、 并把上面所得到的东西作为参数传给Poxy的静态方法newProxyInstance()
4、 该方法并执行Class cl = getProxyClass(loader, interfaces),得到代理类的字节码
5、 得到代理类指定参数所构造:Constructor cons = cl.getConstructor(constructorParams);
6、 有了构造就可以建立代理实例了:return (Object) cons.newInstance(new Object[] { h });
7、 源代码:上面分析跟源代码差不多吧
private final static Class[] constructorParams =
{ InvocationHandler.class };
public static Object newProxyInstance(ClassLoader loader,
Class<?>[] interfaces,
InvocationHandler h)
throws IllegalArgumentException
{
if (h == null) {
throw new NullPointerException();
}
/*
* Look up or generate the designated proxy class.
*/
Class cl = getProxyClass(loader, interfaces);
/*
* Invoke its constructor with the designated invocation handler.
*/
try {
Constructor cons = cl.getConstructor(constructorParams);
return (Object) cons.newInstance(new Object[] { h });
} catch (NoSuchMethodException e) { }
从上面分析及上面源代码可以知道:代理实例只能实现接口的方法,并不是实现了目标类的所有方法。