Java Proxy isProxyClass()方法

java.lang.reflect.Proxy.isProxyClass(Class<?> cl)方法当且仅当使用getProxyClass方法或newProxyInstance方法将指定的类动态生成为代理类时,方法才返回true。

1 语法

public static boolean isProxyClass(Class<?> cl)

2 参数

cl :用于测试的类。

3 返回值

如果类是代理类,则返回true,否则返回false。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Proxy isProxyClass()方法
 */
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 });
        System.out.println(Proxy.isProxyClass(proxyClass));
        proxy.showMessage();
    }
}

class SampleInvocationHandler implements InvocationHandler {

    @Override
    public Object invoke(Object proxy, Method method, Object[] args)
            throws Throwable {
        System.out.println("Welcome To Yiidian.com");
        return null;
    }
}

interface SampleInterface {
    void showMessage();
}

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

输出结果为:

true
Welcome To Yiidian.com

 

热门文章

优秀文章