Java Class getMethod()方法

java.lang.Class.getMethod() 返回一个Method对象,它反映此Class对象所表示的类或接口的指定公共成员方法。 name参数是一个字符串,指定所需的方法的简单名称。

parameterTypes参数是识别方法的形参类型,声明Class对象的顺序数组。如果parameterTypes为null,它被当作是一个空数组。

1 语法

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

2 参数

name:这是该方法的名称。

parameterTypes:这是参数的列表。

3 返回值

此方法返回Method对象匹配指定名称和parameterTypes。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Calendar getInstance()方法的例子
 */
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 ClassDemo.show()
method = public void ClassDemo.showLong(java.lang.Long)

 

热门文章

优秀文章