标签:
在子类的构造函数当中,必须调用父类的构造函数,通过super的参数个数和类型来决定调用父类哪一个构造函数。
class Student extends Person{ Student(){ super();//如果没有添加,编译器自动添加 System.out.println("Student的无参构造函数"): } }
子类实例化和Super
原文地址:http://www.cnblogs.com/zhongxinWang/p/4994121.html