在子类中,若要调用父类中被覆盖的方法,可以使用super关键字
Posted 肥鹅PU火
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在子类中,若要调用父类中被覆盖的方法,可以使用super关键字相关的知识,希望对你有一定的参考价值。
在子类中,若要调用父类中被覆盖的方法,可以使用super关键字。
package text;
class Parent
{
int x;
public Parent()
{
System.out.println("Parent Created1");
}
public void show(){
System.out.println("Parent Created2");
}
}
class Child extends Parent
{
int y;
public Child()
{
System.out.println("Child Created1");
}
public void show(){
super.show();
System.out.println("Parent Created3");
}
}
public class text
{
public static void main(String args[])
{
Child c = new Child();
c.show();
}
}
以上是关于在子类中,若要调用父类中被覆盖的方法,可以使用super关键字的主要内容,如果未能解决你的问题,请参考以下文章