动手实验:继承条件下的构造方法调用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | package test2; 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 3 | GrandParent Created. Parent Created Child Created |
打开下面第一句的代码,
1 | super ( "Hello.Grandparent." ); |
结果:
1 2 3 | GrandParent Created.String:Hello.Grandparent. Parent Created Child Created |
打开第二句代码,结果报错,Constructor call must be the first statement in a constructor
原因分析:
子类创建对象,调用构造方法时,首先如果未显式写出,则会默认调用父类的无参构造,如果显式的写出使用super调用父类的构造方法,注意:通过 super 调用基类构造方法,必须是子类构造方法中的第一个语句,编译器会先进行对于父类构造方法的调用,如果不是第一条语句,则不符合。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· winform 绘制太阳,地球,月球 运作规律
· 上周热点回顾(3.3-3.9)