Proxy クラスのメソッド シグネチャは次のとおりです。
Object java.lang.reflect.Proxy.newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h) throws IllegalArgumentException
Proxy クラスの newProxyInstance のソース コードを確認しましたが、プロキシ オブジェクトが InvocationHandler メソッドに自身を渡す場所が見つかりませんでした
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable;
誰か知っていますか?
ありがとう