位置:首页 > Java技术 > java.lang > java.lang.Class.getMethod()方法实例

java.lang.Class.getMethod()方法实例

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

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

声明

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

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

参数

  • name -- 这是该方法的名称。

  • parameterTypes -- 这是参数的列表。

返回值

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

异常

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

  • NullPointerException -- 如果name为null

  • SecurityException --如果安全管理存在。

例子

下面的例子显示java.lang.Class.getMethod()方法的使用。

package com.yiibai;

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)