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)