Java 源码 - InvocationHandler 调用处理器

2022/6/27 14:20:25

本文主要是介绍Java 源码 - InvocationHandler 调用处理器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

InvocationHandler 位于 JDK 反射包下,其作用是在实现 JDK 动态代理。

源码

package java.lang.reflect;

/**
 * InvocationHandler is the interface implemented by the invocation handler of a proxy instance.
 */
public interface InvocationHandler {
    /**
     * Processes a method invocation on a proxy instance and returns the result. 
     */
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
}


这篇关于Java 源码 - InvocationHandler 调用处理器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程