摘要: 1.在子类的构造方法运行之前,必须调用父类的构造方法,,不能反过来 class Grandparent { public Grandparent() { System.out.println("GrandParent Created."); } public Grandparent(String s 阅读全文