父类和子类中对于构造函数的调用问题

本文深入探讨了Java中子类如何自动调用父类构造函数的机制,包括默认构造函数的调用、重写默认构造函数的影响以及无参构造函数与有参构造函数之间的区别。通过实例代码展示不同情况下构造函数的调用过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


1.如果父类中没有构造函数,即使用默认的构造函数,那子类的构造函数会自动调用父类的构造函数
  1. class Father {   
  2.   private int a, b;   
  3.   
  4.   void show() {   
  5.     System.out.println(a);   
  6.   }   
  7. }   
  8.   
  9. class Son extends Father {   
  10.   private int c, d;   
  11.   
  12.   Son(int c, int d) {   
  13.     this.c c;   
  14.     this.d d;   
  15.   }   
  16. }   
  17.   
  18. public class ConstructionTest {   
  19.   public static void main(String args[]) {   
  20.     Son new Son(23);   
  21.     s.show();   
  22.   }   
  23.  

输出结果0,说明子类的构造函数自动调用父类的无参构造函数,初始化父类的成员为0

2.如果父类中定义了无参构造函数,子类的构造函数会自动调用父类的构造函数
  1. class Father {   
  2.   private int a, b;   
  3.   
  4.   Father() {   
  5.     System.out.println("father done");   
  6.   }   
  7.   
  8.   void show() {   
  9.     System.out.println(a);   
  10.   }   
  11. }   
  12.   
  13. class Son extends Father {   
  14.   private int c, d;   
  15.   
  16.   Son(int c, int d) {   
  17.     this.c c;   
  18.     this.d d;   
  19.   }   
  20. }   
  21.   
  22. public class ConstructionTest {   
  23.   public static void main(String args[]) {   
  24.     Son new Son(23);   
  25.     s.show();   
  26.   }   
  27.  

输出结果:father done
0
说明重写了默认的无参构造函数,子类自动调用这个函数,父类的成员还是被初始化为0.

3. 如果定义了有参构造函数,则不会有默认无参构造函数,这样的话子类在调用父类的午餐构造函数的时候会出错(没有用super调用父类有参构造函数的情况下)
  1. class Father {   
  2.   private int a, b;   
  3.   
  4.   Father(int a, int b) {   
  5.     this.a a;   
  6.     this.b b;   
  7.   }   
  8.   
  9.   void show() {   
  10.     System.out.println(a);   
  11.   }   
  12. }   
  13.   
  14. class Son extends Father {   
  15.   private int c, d;   
  16.   
  17.   Son(int c, int d) {   
  18.     this.c c;   
  19.     this.d d;   
  20.   }   
  21. }   
  22.   
  23. public class ConstructionTest {   
  24.   public static void main(String args[]) {   
  25.     Son new Son(23);   
  26.     s.show();   
  27.   }   
  28.  


输出结果:
Exception in thread "main" java.lang.NoSuchMethodError: Father: method <init>()V
not found
at Son. <init>(Son.java:5)
at ConstructionTest.main(ConstructionTest.java:6)


总结:
1 任何类,都会调用父类的构造器
2 如果没写,则调用父类无参数的
3 否则必须手工写上调用哪个,且必须是第一行
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值