JAVA__21

AMJ·2023년 3월 2일
0

언어_log

목록 보기
21/57

[좋은코드] 클래스와 생성자의 관계

각 클래스마다 적절한 생성자를 배치한다.


class Main {
    public static void main(String[] args) {
        int 엄지손가락_길이 = new 사람().a왼팔.a손.a엄지손가락.길이;

        System.out.println(엄지손가락_길이 + "cm");
        // 출력 : 5cm
    }
}

class 사람 {
    팔 a왼팔;

    사람() {
      	a왼팔 = new();
    }
}

class{
    손 a손;() {
     	 a손 = new();
 	 }
}

class{
    손가락 a엄지손가락;() {
     	 a엄지손가락 = new 손가락();
    }
}

class 손가락 {
    int 길이;

    손가락() {
    	  길이 = 5;
    }
}

profile
재미있는 것들

0개의 댓글