匿名函数中的使用

发布于 2022-09-06 09:59:16 字数 797 浏览 31 评论 0

public class Anonymousfunction {

public void test(Test test){
    Test test2 = test;
    test2.show();   // 执行结果:这是类的 show 方法
    Method [] methods = test2.getClass().getDeclaredMethods();
    System.out.println(methods.length);
    for(Method method : methods)     // 对象里为什么只有一个 display 函数呢 ,没有 show 函数?
        System.out.println(method.getName());
}

public static void main(String [] args){
    Anonymousfunction anonymousfunction = new Anonymousfunction();
    anonymousfunction.test(new Test (){
        public void display () {
            System.out.println("这是 Test 类的 display 方法");
        }
    });
}

}

class Test{

public void show(){
    System.out.println("这是类的 show 方法");
}

}

问题描述 就是上面的那一行注释,是在没想明白

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮凉 2022-09-13 09:59:16

getDeclaredMethods是列出本类声明的方法(不包括超类的方法),你的写法是个Test的匿名内部类,它只声明了display方法

栖竹 2022-09-13 09:59:16
final class Anonymousfunction$1 extends Test
{
  public void display()
  {
    System.out.println("这是 Test 类的 display 方法");
  }
}

生成的内部类如上代码, Test test2 = test指向的是包名.Anonymousfunction$1不是Test,
public Method[] getDeclaredMethods()throws SecurityException返回 Method 对象的一个数组,这些对象反映此 Class 对象表示的类或接口声明的所有方法,包括公共、保护、默认(包)访问和私有方法,但不包括继承的方法,不包括继承方法,所以只有display.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文