Class类中的getMethods()和getDeclaredMethods()的区别

1:getMethods(),该方法是获取本类以及父类或者父接口中所有的公共方法(public修饰符修饰的)

在这里插入图片描述

2:getDeclaredMethods(),该方法是获取本类中的所有方法,包括私有的(private、protected、默认以及public)的方法。

在这里插入图片描述
代码演示:
1、定义父类:

package reflection;

/**
 * Created with IntelliJ IDEA.
 * Description:
 * User: HuYu
 * Date: 2021-05-09
 * Time: 15:58
 */
public class ReflectionParent {
    public void start() {
                System.out.println("starting...");
             }

    protected void eat() {
                 System.out.println("eating...");
             }
             void end() {
                 System.out.println("ending...");
             }

            @SuppressWarnings("unused")
     private void sing() {
                 System.out.println("sing...");
             }
}

2、定义子类ReflectionDemo1继承父类,定义两个自己的方法

package reflection;

import org.junit.Test;

import java.lang.reflect.Method;

/**
 * Created with IntelliJ IDEA.
 * Description:
 * User: HuYu
 * Date: 2021-05-09
 * Time: 16:00
 */
public class ReflectionDemo1 extends ReflectionParent {
    @SuppressWarnings("unused")
     private void read() {
                 System.out.println("reading...");
             }

             public void write() {
                 System.out.println("writing...");
             }

    /**
     */
             @Test
     public void testGetMethods() {
                 Method[] methods = this.getClass().getMethods();
                 for (Method m : methods) {
                         System.out.println(m.getName());
                     }
             }

             @Test
     public void testGetDeclaredMethods() {
                 Method[] methods = this.getClass().getDeclaredMethods();
                 for (Method m : methods) {
                         //System.out.println(m.getName());
                     }
             }
}

运行testGetMethods()方法:
在这里插入图片描述
运行testGetDeclaredMethods()方法
在这里插入图片描述

总结:

其他的方法,类似字段以及构造方法和方法类似
eg::getFileds()与getDeclaredFileds()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值