java.lang.Class.getDeclaredMethod()方法详解

时间:2023-03-09 01:01:31
java.lang.Class.getDeclaredMethod()方法详解

Java.lang.Class.getDeclaredMethod()方法用法

注:方法返回一个Method对象,它反映此Class对象所表示的类或接口的指定已声明方法。

描述

java.lang.Class.getDeclaredMethod()方法返回一个Method对象,它反映此Class对象所表示的类或接口的指定已声明方法。

name 参数是一个字符串,指定所需的方法的简单名称,

parameterTypes 参数是一个数组的Class对象识别方法的形参类型,在声明的顺序

声明

  1. public Method getDeclaredMethod(String name, Class... parameterTypes) throws NoSuchMethodException,SecurityException

参数
name -- 方法的名称
parameterTypes -- 参数数组

返回值
匹配指定名称和参数的类的方法,此方法返回的Method对象

异常
NoSuchMethodException -- 如果匹配方法未找到

NullPointerException -- 如果name 为 null.

SecurityException -- If a security manager, s, is present.

实例
如何使用java.lang.Class.getDeclaredMethod()方法

  1. package com.app.ui;
  2. import java.lang.reflect.*;
  3. public class ClassDemo {
  4. public static void main(String[] args) {
  5. ClassDemo cls = new ClassDemo();
  6. Class c = cls.getClass();
  7. try {
  8. // parameter type is null
  9. Method m = c.getDeclaredMethod("show", null);
  10. System.out.println("method = " + m.toString());
  11. // method Integer
  12. Class[] cArg = new Class[1]
  13. cArg[0] = Integer.class;
  14. Method lMethod = c.getDeclaredMethod("showInteger", cArg);
  15. System.out.println("method = " + lMethod.toString());
  16. }catch(NoSuchMethodException e){
  17. System.out.println(e.toString());
  18. }
  19. }
  20. private Integer show() {
  21. return 1;
  22. }
  23. public void showInteger(Integer i) {
  24. this.i = i;
  25. }
  26. public int i = 78655;
  27. }

编译和运行程序,产生以下结果:

  1. method = private java.lang.Integer ClassDemo.show()
  2. method = public void ClassDemo.showInteger(java.lang.Integer)

注:

getDeclaredMethod() 获取的是类自身声明的所有方法,包含public、protected和private方法。

getMethod () 获取的是类的所有共有方法,这就包括自身的所有public方法,和从基类继承的、从接口实现的所有public方法。