当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.lang.reflect.Proxy.isProxyClass()用法及代码示例



描述

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

声明

以下是声明java.lang.reflect.Proxy.isProxyClass(Class<?> cl)方法。

public static boolean isProxyClass(Class<?> cl)

参数

cl- 要测试的类。

返回

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

异常

NullPointerException- 如果 cl 为空。

示例

下面的例子展示了 java.lang.reflect.Proxy.isProxyClass(Class<?> cl) 方法的用法。

package com.tutorialspoint;

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

interface SampleInterface {
   void showMessage();
}

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

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

true
Welcome to TutorialsPoint

相关用法


注:本文由纯净天空筛选整理自 java.lang.reflect.Proxy.isProxyClass() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。