[JAVA] this() 생성자(코드의 간결함을 위한!)
this() 생성자 자기 자신의 다른 클래스를 호출하기 위한 생성자이다. 쓰이는 이유는 코드의 간결함 떄문, 자세한건 아래 예제를 통해 이해하자. 예제 package test; import java.util.Scanner; class House{ int price; String dong; int size; String kind; public House(){ this(100,32,"상계동","아파트"); } public House(int price){ this(price, 32, "상계동", "아파트"); } public House(int price, int size){ this(price, size, "상계동", "아파트"); } public House(int price, int size, String ..