ReflectiveMethodInvocation invocation = new ReflectiveMethodInvocation( proxy, target, Target.class.getMethod("foo", int.class), new Object[]{100}, Target.class, interceptorList ){}; 为什么这样写,就可以创建ReflectiveMethodInvocation的对象?
时间: 2024-04-03 07:37:15 浏览: 220
distributed-management-system-project-source-code_htmlad.class:m
这段代码使用了Java中的匿名内部类语法创建了一个ReflectiveMethodInvocation对象,并对其进行了初始化。具体来说,代码中的{}表示一个匿名内部类的开始,该匿名内部类继承了ReflectiveMethodInvocation类并重写了其中的构造方法。在这个匿名内部类中,调用了ReflectiveMethodInvocation类的构造方法,传入了proxy、target、目标方法(即Target类中的foo方法)、参数(即100)、目标类(即Target.class)和拦截器列表(即interceptorList)等参数,从而创建了ReflectiveMethodInvocation的对象。
需要注意的是,这里传入的参数都是对应构造方法中的参数,通过这些参数可以对ReflectiveMethodInvocation的对象进行初始化和赋值。其中proxy指代的是代理对象,target指代的是目标对象,interceptorList指代的是方法拦截器列表,而getMethod方法是获取Target类中的foo方法并将其作为ReflectiveMethodInvocation的目标方法。
阅读全文