當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.lang.reflect.Proxy.getProxyClass()用法及代碼示例



描述

這個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- 如果接口數組參數或其任何元素為空。

示例

下麵的例子展示了 java.lang.reflect.Proxy.getProxyClass(ClassLoader loader, Class<?>... interfaces) 方法的用法。

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

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Welcome to TutorialsPoint

相關用法


注:本文由純淨天空篩選整理自 java.lang.reflect.Proxy.getProxyClass() Method Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。