在類中用this呼叫建構函式
阿新 • • 發佈:2019-01-28
public class Person{
public Person(){//無引數的建構函式
System.out.println("this()");
}
public Person(String name){ //有一個引數的建構函式
System.out.println("this("+name+")");
}
public Person(String name, int age){ //兩個引數的建構函式
System.out.println("this("+name+","+age+")");
}
public static void getThis(){ //測試方法
//this.();呼叫無參的
this.("張三"); //呼叫一個引數的
this.("小童鞋_成er",23); //呼叫有兩個引數的構造方法
}
public static void main(String[] args){
getThis();
}
}