从静态方法调用超级方法

从静态方法调用超级方法,第1张

静态方法调用超级方法

在Java中,静态方法不能被覆盖。原因在这里 得到了很好的解释

因此,它不依赖于被引用的对象。但是,它取决于引用的类型。因此,据说静态方法隐藏了另一个静态方法而不覆盖它。

例如(Cat是Animal的子类):

public class Animal {    public static void hide() {        System.out.format("The hide method in Animal.%n");    }    public void override() {        System.out.format("The override method in Animal.%n");    }}public class Cat extends Animal {    public static void hide() {        System.out.format("The hide method in Cat.%n");    }    public void override() {        System.out.format("The override method in Cat.%n");    }}

主班:

public static void main(String[] args) {    Cat myCat = new Cat();    System.out.println("Create a Cat instance ...");    myCat.hide();     Cat.hide();    myCat.override();    Animal myAnimal = myCat;    System.out.println("nCast the Cat instance to Animal...");    Animal.hide();         myAnimal.override();    Animal myAnimal1 = new Animal();    System.out.println("nCreate an Animal instance....");    Animal.hide();         myAnimal.override();}

现在,输出将如下所示

Create a Cat instance ...The hide method in Cat.The hide method in Cat.The override method in Cat.Cast the Cat instance to Animal...The hide method in Animal.The override method in Cat.Create an Animal instance....The hide method in Animal.The override method in Animal.

对于

class methods
,运行时系统将调用在调用方法的引用的编译时类型中定义的方法。

换句话说,对静态方法的调用在编译时进行映射,并且取决于引用的声明类型(在这种情况下为父),而不是引用在运行时指向的实例。在示例中,的编译时类型

myAnimal
Animal
。因此,运行时系统将调用中定义的hide方法
Animal



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5164167.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存