java.lang.reflect.Proxy.getProxyClass(ClassLoader loader, Class<?>... interfaces)
方法将给定类加载器和接口数组的代理类的方法返回java.lang.Class
对象。 代理类将由指定的类加载器定义,并将实现所有提供的接口。 如果类加载器已经定义了接口相同置换的代理类,那么将返回现有的代理类; 否则,这些接口的代理类将被动态生成并由类加载器定义。
声明
以下是java.lang.reflect.Proxy.getProxyClass(ClassLoader loader, Class<?>... interfaces)
方法的声明。
public static Class<?> getProxyClass(ClassLoader loader, Class<?>... interfaces)
throws IllegalArgumentException
参数
- loader - 类加载器来定义代理类。
- interfaces - 代理类实现的接口列表。
返回值
- 在指定的类加载器中定义并实现指定接口的代理类。
异常
- IllegalArgumentException - 如果对可能传递给
getProxyClass
的参数有限制。 - NullPointerException - 如果
interfaces
数组参数或其任何元素为null
。
示例
以下示例显示了java.lang.reflect.Proxy.getProxyClass(ClassLoader loader, Class<?>... interfaces)
方法的用法。
package com.yiibai;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxyDemo {
public static void main(String[] args) throws IllegalArgumentException,
InstantiationException, IllegalAccessException,
InvocationTargetException, NoSuchMethodException, SecurityException {
InvocationHandler handler = new SampleInvocationHandler();
Class proxyClass = Proxy.getProxyClass(
SampleClass.class.getClassLoader(),
new Class[] { SampleInterface.class });
SampleInterface proxy = (SampleInterface) proxyClass.getConstructor(
new Class[] { InvocationHandler.class }).newInstance(
new Object[] { handler });
proxy.showMessage();
}
}
class SampleInvocationHandler implements InvocationHandler {
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
System.out.println("Welcome To Yiibai.com");
return null;
}
}
interface SampleInterface {
void showMessage();
}
class SampleClass implements SampleInterface {
public void showMessage() {
System.out.println("Hello World");
}
}
让我们编译并运行上面的程序,这将产生以下结果 -
Welcome To Yiibai.com