首页 > 代码库 > this 与 super 重复问题?
this 与 super 重复问题?
我们都知道 this 和 super 关键字,在 调用 构函数的时候,
都必须写在第一行中!
this 调用的是当前的类的构造函数!
super 调用的是父类的构造函数!
this和super可不可以重复??
class Student extends Person { int grade; Student() { super(); System.out.println("我的是Student 的无參构造函数! "); } Student(String name,int grade) { this(); super(name); this.grade = grade; } }
出错:
Constructor call must be the first statement in a constructor
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。