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

this 与 super 重复问题?

时间:2014-07-25 10:59:31      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   2014   re   c   问题   size   


我们都知道 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

bubuko.com,布布扣

this 与 super 重复问题?,布布扣,bubuko.com

this 与 super 重复问题?

标签:style   blog   java   2014   re   c   问题   size   

原文地址:http://blog.csdn.net/love_javc_you/article/details/38110275

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