This1 Day 15. this(), this - 생성자의 이름으로 클래스이름 대신 this를 사용한다. - 한 생성자에서 다른 생성자를 호출할 때는 반드시 첫 줄에서만 호출이 가능하다. class Car { String color; String gearType; int door; Car(){ this("white", "auto", 4); // Car(String color, String gearType, int door)를 호출 } Car(String color){ this(color, "auto", 4); } Car(String color, String gearType, int door){ this.color = color; this.gearType = gearType; this.door = door; } } public .. 2022. 1. 19. 이전 1 다음