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