动手实验:继承条件下的构造方法调用

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 调用基类构造方法,必须是子类构造方法中的第一个语句,编译器会先进行对于父类构造方法的调用,如果不是第一条语句,则不符合。

 

posted @   ashuai~  阅读(27)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· winform 绘制太阳,地球,月球 运作规律
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示