public interface InvocationHandler {
public Object invoke(Object proxy,Method method,Object[] args)
throws Throwable;
}
我们对于被代理的类的操作都会由该接口中的invoke方法实现,其中的参数的含义分别是:
public interface InvocationHandler {
public Object invoke(Object proxy,Method method,Object[] args)
throws Throwable;
}
我们对于被代理的类的操作都会由该接口中的invoke方法实现,其中的参数的含义分别是: