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

继承条件下的构造方法调用 super

时间:2015-11-05 15:05:06      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

 运行TestInherits.java示例,观察输出,注意总结父类与子类之间构造方法的调用关系修改Parent构造方法的代码,显式调用GrandParent的另一个构造函数,注意这句调用代码是否是第一句,影响重大!

程序:

class Grandparent 
{

   
     public Grandparent() 
    {
 
         System.out.println("GrandParent Created.");

     }

 

    public Grandparent(String string)
    {
        System.out.println("GrandParent Created.String:" + string);
 
       }

}    



class Parent extends Grandparent
{

 
   public Parent() 
    {
  
          //super("Hello.Grandparent.");
    
        System.out.println("Parent Created");
 
          // super("Hello.Grandparent.");
 
       }

}



class Child extends Parent 
{

   
     public Child()
     {
   
             System.out.println("Child Created");
 
       }

}



public class TestInherits 
{

    
    public static void main(String args[]) 
    {
       
         Child c = new Child();
   
     }

}

结果截图:

1  原程序

技术分享

2  super在第一句

技术分享

3  super不在第一句

技术分享

 

结论: 

通过super 调用基类构造方法,必须是子类构造方法的第一个语句。
 
 思考
为什么子类的构造方法在运行之前,必须调用父类的构造方法?能不能反过来?为什么不能反过来?
   因为子类的初始化会造成父类构造函数的执行。  而Parent类继承了Grandparent类,Child类又继承了Parent类,由于super位于Parent类中,调用其基类Grandparent的构造函数,由于super("Hello.Grandparent.")带有参数,调用的是第二个构造函数。

 

继承条件下的构造方法调用 super

标签:

原文地址:http://www.cnblogs.com/389629916muyachao/p/4939221.html

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