这是 Proxy 类的方法签名:
Object java.lang.reflect.Proxy.newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h) throws IllegalArgumentException
我检查了代理类中 newProxyInstance 的源代码,我找不到代理对象将自身传递给 InvocationHandler 方法的位置
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable;
有人知道吗?
谢谢