Java Class getDeclaredMethod()方法
java.lang.Class.getDeclaredMethod() 方法返回一个Method对象,它反映此Class对象所表示类或接口的指定已声明方法。 name参数是一个字符串,指定所需方法的简单名称,parameterTypes参数是识别方法的形参类型的Class对象的数组,在声明的顺序。
1 语法
public Method getDeclaredMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException
2 参数
name:这是该方法的名称
parameterTypes:这是参数数组。
3 返回值
此方法返回这个类的匹配指定名称和参数的方法的Method对象。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Class getDeclaredMethod()方法
*/
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
热门文章
优秀文章