在子类中,若要调用父类中被覆盖的方法,可以使用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关键字的主要内容,如果未能解决你的问题,请参考以下文章

java如何调用父类的父类中被覆盖的方法

java 动手动脑之父子继承

继承和多态杂谈

在java中子类若要继承父类,需要使用的关键字是啥

第七周动手动脑(2018.10.29-11.4)

类继承