课后作业2015.11.9

动手动脑 1

源代码:

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();

    

}

 

}

posted @ 2015-11-09 13:23  血盟丿龙腾万里  阅读(104)  评论(0)    收藏  举报