java.lang.reflect.Proxy.newProxyInstance() 方法示例



说明

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

声明

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

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

参数

  • loader − 定义代理类的类加载器。

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

  • h − 调用处理程序,将方法调用分派到该处理程序。

返回

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

异常

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

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

示例

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

package com.tutorialspoint;

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 TutorialsPoint");   
      return null;
   }
}

interface SampleInterface {
   void showMessage();
}

class SampleClass implements SampleInterface {
   public void showMessage(){
      System.out.println("Hello World");   
   }
}

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

com.tutorialspoint.SampleInvocationHandler
java_reflect_proxy.htm
广告