생성자 오버로딩과 this

신예환·2022년 11월 13일
0

자바

목록 보기
12/12
post-thumbnail
public class Car {
    String name;
    int number;

    Car(String name, int number) {
        this.name = name;
        this.number = number;
    }
    
    Car() {
        this("이름없음", 0);
    }
    
    Car(String name) {
        this(name, 0);
    }
}

이러한 활용도 있구만..

profile
더디가도 함께가자

0개의 댓글