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


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



描述

這個java.lang.Class.getDeclaredMethod() 方法返回一個 Method 對象,該對象反映了此 Class 對象表示的類或接口的指定聲明方法。這name參數是一個字符串,它指定了所需方法的簡單名稱,以及parameterTypes參數是一個 Class 對象數組,按聲明的順序標識方法的形式參數類型

聲明

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

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

參數

  • name- 這是方法的名稱

  • parameterTypes- 這是參數數組。

返回值

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

異常

  • NoSuchMethodException− 如果未找到匹配方法。

  • NullPointerException− 如果名稱為空。

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

示例

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

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.getDeclaredMethod("show", null);
         System.out.println("method = " + m.toString()); 

         // method Integer
         Class[] cArg = new Class[1];
         cArg[0] = Integer.class;
         Method lMethod = c.getDeclaredMethod("showInteger", cArg);
         System.out.println("method = " + lMethod.toString());
      } catch(NoSuchMethodException e) {
         System.out.println(e.toString());
      }
   }

   private Integer show() {
      return 1;
   }
    
   public void showInteger(Integer i) {
      this.i = i;
   }
   public int i = 78655;
}

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

method = private java.lang.Integer ClassDemo.show()
method = public void ClassDemo.showInteger(java.lang.Integer

相關用法


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