Java Method类及invoke方法原理解析

2025-05-29 0 34

在说Methodinvoke的使用之前我们来看一个小例子, 如果看懂了那就ok了

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30
public class MethodInvoke {

class Animal {

public void print() {

System.out.println("Animal.print()");

}

}

class Cat extends Animal {

@Override

public void print() {

System.out.println("Cat.print()");

}

}

public static void main(String[] args) throws Exception {

Method animalMethod = Animal.class.getDeclaredMethod("print");

Method catMethod = Cat.class.getDeclaredMethod("print");

Animal animal = new Animal();

Cat cat = new Cat();

animalMethod.invoke(cat); //相当于 cat调用父类的print方法

animalMethod.invoke(animal);//相当于 animal.print();

catMethod.invoke(cat); //相当于 cat.print();

catMethod.invoke(animal);

}

}

执行结果如下

?

1

2

3

4

5

6

7
Cat.print()

Animal.print()

Cat.print()

Exception in thread "main" java.lang.IllegalArgumentException: object is not an instance of declaring class

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

代码中,Cat类覆盖了父类Animal的print()方法, 然后通过反射分别获取print()的Method对象。最后分别用Cat和Animal的实例对象去执行print()方法。其中animalMethod.invoke(animal)和catMethod.invoke(cat),示例对象的真实类型和Method的声明Classs是相同的,按照预期打印结果;animalMethod.invoke(cat)中,由于Cat是Animal的子类,按照多态的特性,子类调用父类的的方法,方法执行时会动态链接到子类的实现方法上。

因此,这里会调用Cat.print()方法;而catMethod.invoke(animal)中,传入的参数类型Animal是父类,却期望调用子类Cat的方法,因此这一次会抛出异常。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

原文链接:https://www.cnblogs.com/xwxz/p/13391437.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 Java Method类及invoke方法原理解析 https://www.kuaiidc.com/118834.html

相关文章

发表评论
暂无评论