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


Java 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- 如果接口數組參數或其任何元素為空,或者調用處理程序 h 為空。

示例

下麵的例子展示了 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.lang.reflect.Proxy.newProxyInstance() Method Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。