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


Java Java.lang.Class.getMethod()用法及代碼示例



描述

這個java.lang.Class.getMethod()返回一個 Method 對象,該對象反映了此 Class 對象表示的類或接口的指定公共成員方法。這name參數是一個字符串,指定所需方法的簡單名稱。

這個parameterTypes參數是一個 Class 對象的數組,這些對象按聲明的順序標識方法的形式參數類型。如果parameterTypes為空,則將其視為空數組。 .

聲明

以下是聲明java.lang.Class.getMethod()方法

public Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException

參數

  • name- 這是方法的名稱。

  • parameterTypes- 這是參數列表。

返回值

此方法返回與指定名稱和參數類型匹配的 Method 對象。

異常

  • NoSuchMethodException- 如果沒有找到匹配的方法或者名稱是 <init> 或 <clinit>。

  • NullPointerException- 如果名稱為空

  • SecurityException− 如果存在安全管理器 s。

示例

下麵的例子展示了 java.lang.Class.getMethod() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.*;

public class ClassDemo {

   public static void main(String[] args) {
    
      ClassDemo cls = new ClassDemo();
      Class c = cls.getClass();

      try {                
         // parameter type is null
         Method m = c.getMethod("show", null);
         System.out.println("method = " + m.toString());        
      } catch(NoSuchMethodException e) {
         System.out.println(e.toString());
      }
 
      try {
         // method Long
         Class[] cArg = new Class[1];
         cArg[0] = Long.class;
         Method lMethod = c.getMethod("showLong", cArg);
         System.out.println("method = " + lMethod.toString());
      } catch(NoSuchMethodException e) {
         System.out.println(e.toString());
      }
   }

   public Integer show() {
      return 1;
   }
    
   public void showLong(Long l) {
      this.l = l;
   }
   long l = 78655;
}

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

method = public java.lang.Integer com.tutorialspoint.ClassDemo.show()
method = public void com.tutorialspoint.ClassDemo.showLong(java.lang.Long)

相關用法


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