super函數
Super()表示調用父類的構造方法。若是沒有定義構造方法,那麼就會調用父類的無參構造方法,即super()。this
thisspa
在構造方法中,this表示本類的其餘構造方法:
student(string n){code
this(); //this表示調用這個類的student()
}
若是調用student(int a)則爲this(int a)。
特別注意:用this調用其餘構造方法時,this必須爲第一條語句,而後纔是其餘語句。blog
1 class Person{ 2 3 Person(){ 4 prt("A Person."); 5 } 6 7 Person(String name){ 8 prt("A person name is:"+name); 9 } 10 } 11 12 public class Chinese extends Person{ 13 14 class Chinese{ 15 16 Chinese(){ 17 super(); //調用父類構造函數 18 prt("A chinese."); 19 } 20 21 Chinese(String name){ 22 super(name); // 調用父類具備相同形參的構造函數,Person(String name)裏的prt("A person name is:"+name)方法被調用。 23 prt("his name is:"+name); 24 } 25 26 Chinese(String name,int age){ 27 this(name);//調用當前具備相同形參的構造函數,Chinese(String name)裏prt("his name is:"+name);super(name);被調用。 28 prt("his age is:"+age); 29 } 30 31 32 }