Java 생성자 this(), 참조변수 this
볼빵빵오춘기
생성자 this() 생성자에서 다른 생성자 호출할 때 사용 다른 생성자 호출시 첫 줄에서만 사용가능하다. class Car2{ String color; String gearType; int door; Car2(){ this("white","auto",4); // 코드1 } Car2(String color){ this(color,"auto",4); // 코드2 } Car2(String color, String gearType, int door){ this.color = color; // 코드3-1 this.gearType = gearType; // 코드3-2 this.door = door; // 코드3-3 } } ※ 코드1 생성자와 코드2 생성자는 코드 3 생성자를 호출하고 있다. 하지만 Car2 라고 표..