JAVA_coding_06

AMJ·2023년 3월 3일
0

code_log_java

목록 보기
7/29

생성자 클래스 관계

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개의 댓글