码迷,mamicode.com
首页 > 其他好文 > 详细

在子类中,若要调用父类中被覆盖的方法,可以使用super关键字

时间:2017-11-11 00:24:41      阅读:541      评论:0      收藏:0      [点我收藏+]

标签:stat   show   out   png   print   bsp   child   new   覆盖   

在子类中,若要调用父类中被覆盖的方法,可以使用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关键字

标签:stat   show   out   png   print   bsp   child   new   覆盖   

原文地址:http://www.cnblogs.com/liushiqiang123/p/7816787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!