static Object newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)

优质
小牛编辑
133浏览
2023-12-01

描述 (Description)

java.lang.reflect.Proxy.newProxyInstance(ClassLoader loader, Class《?》[] interfaces, InvocationHandler h)方法返回指定接口的代理类的实例,该接口将方法调用分派给指定的调用处理程序。

声明 (Declaration)

以下是java.lang.reflect.Proxy.newProxyInstance(ClassLoader loader, Class《?》[] interfaces, InvocationHandler h)方法的声明。

public static Object newProxyInstance(ClassLoader loader, Class<?>[] interfaces,
   InvocationHandler h)
      throws IllegalArgumentException

参数 (Parameters)

  • loader - 用于定义代理类的类加载器。

  • interfaces - 要实现的代理类的接口列表。

  • h - 调度方法调用的调用处理程序。

返回值 (Returns)

具有指定的代理类调用处理程序的代理实例,该代理类由指定的类加载器定义并实现指定的接口。

异常 (Exceptions)

  • IllegalArgumentException - 如果违反了可能传递给getProxyClass的参数的任何限制。

  • NullPointerException - 如果interfaces数组参数或其任何元素为null,或者调用处理程序h为null。

例子 (Example)

以下示例显示了java.lang.reflect.Proxy.newProxyInstance(ClassLoader loader,Class [] interfaces,InvocationHandler h)方法的用法。

package cn.xnip;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxyDemo {
   public static void main(String[] args) throws IllegalArgumentException {
      InvocationHandler handler = new SampleInvocationHandler() ;
      SampleInterface proxy = (SampleInterface) Proxy.newProxyInstance(
         SampleInterface.class.getClassLoader(),
         new Class[] { SampleInterface.class },
         handler);
      Class invocationHandler = Proxy.getInvocationHandler(proxy).getClass();
      System.out.println(invocationHandler.getName());
   }
}
class SampleInvocationHandler implements InvocationHandler {
   @Override
   public Object invoke(Object proxy, Method method, Object[] args)
      throws Throwable {
      System.out.println("Welcome to xnip");   
      return null;
   }
}
interface SampleInterface {
   void showMessage();
}
class SampleClass implements SampleInterface {
   public void showMessage(){
      System.out.println("Hello World");   
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

cn.xnip.SampleInvocationHandler