首页 > 其他 > 详细

this 与 super 反复问题?

时间:2017-04-14 20:32:29      阅读:240      评论:0      收藏:0      [点我收藏+]


我们都知道 this  和 super keyword,在 调用 构函数的时候,

都必须写在第一行中。

        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

技术分享

this 与 super 反复问题?

原文:http://www.cnblogs.com/claireyuancy/p/6710639.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!