首页 > 其他分享 >222

222

时间:2023-01-06 19:22:39浏览次数:37  
标签:Parent System public Child Grandparent 222 out

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

 

标签:Parent,System,public,Child,Grandparent,222,out
From: https://www.cnblogs.com/ysk0904/p/17031422.html

相关文章