1

我在这里阅读了有关代理的示例:http: //docs.oracle.com/javase/1.3/docs/guide/reflection/proxy.html

可以看到,'invoke'方法中的参数'proxy'没有被使用。代理是做什么用的?为什么不在这里使用它:result = m.invoke( proxy , args); ?

public class DebugProxy implements java.lang.reflect.InvocationHandler {

private Object obj;

public static Object newInstance(Object obj) {
return java.lang.reflect.Proxy.newProxyInstance(
    obj.getClass().getClassLoader(),
    obj.getClass().getInterfaces(),
    new DebugProxy(obj));
}

private DebugProxy(Object obj) {
this.obj = obj;
}

public Object invoke(Object proxy, Method m, Object[] args)
throws Throwable
{
    Object result;
try {
    System.out.println("before method " + m.getName());
    result = m.invoke(obj, args);
    } catch (InvocationTargetException e) {
    throw e.getTargetException();
    } catch (Exception e) {
    throw new RuntimeException("unexpected invocation exception: " +
                   e.getMessage());
} finally {
    System.out.println("after method " + m.getName());
}
return result;
}

}

4

1 回答 1

2

proxy是JVM“动态代理”类专门构造的。您的代码不能直接调用它的方法。另一种思考方式是代理是“接口”,在其上调用任何方法都对应于调用public Object invoke(Object proxy, Method m, Object[] args)方法,因此在代理上调用方法将以无限循环结束。

于 2012-05-15T15:11:30.407 回答