JAVA #23 생성자 this() , 참조 변수 this , 변수의 초기화 , 멤버변수의 초기화
1. 생성자 this() - 생성자에서 다른 생정자 호출할 때 사용 - 다른 생성자 호출시 첫 줄에서만 사용가능 class Car2 { String color;//색상 String gearType;//변속기 종류 - auto(자동), manual(수동) int door;// 문의 개수 Car2() { this("white","auto",4); } Car2(String color) { this(color, "auto",4); Car2(String color, String gearType, int door) { this.color = color; this.gearType = gearType; this.door = door; } } 2. 참조변수 this - 인스턴스 자신을 가리키는 참조변수 - 인스턴스 메서..