码迷,mamicode.com
首页 > 其他好文 > 详细

子类父类 构造器调用

时间:2019-06-11 19:04:28      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:extends   结果   style   out   string   The   new   name   strong   

class People {
String name;
public People() {
System.out.print(1);
}
public People(String name) {
System.out.print(2);
this.name = name;
}
}
class Child extends People {
People father;

public Child(String name) {
System.out.print(3);
this.name = name;
father = new People(name + ":F");
}
public Child() {
System.out.print(4);
}

}

---------------------------------------------------------

结果:132

总结:子类的构造器中没有super();不管子类构造器中有无参数都会去调用父类的无参构造函数,若父类没有无参构造函数则会报错!

子类父类 构造器调用

标签:extends   结果   style   out   string   The   new   name   strong   

原文地址:https://www.cnblogs.com/2016-cxp/p/11005325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!