
클래스 이름(){} //기본생성자
Point(){} // Point의 기본생성자

클래스를 만들때 기본생성자를 꼭 넣어주는 습관을 가져야한다.

class Car2{
String color; //색상
String gearType; //변속기 종류 -auto(자동), manual(수동)
int door; //문의 개수
Car2(String color, String gearType, int door){
this.color=color;
this.gearType=gearType;
this.door=door;
}
Car2(){
this("white","auto",4); //iv변수를 사용하기 위해 this사용
}
Car2(String color){
this(color, "auto",4);
}


*참조변수 this 와 this() 생성자는 전혀 다른거다



