개발의 시작과 끝

2020.03.01 / Day - 17 자바 클래스 복습 본문

자바 복습

2020.03.01 / Day - 17 자바 클래스 복습

개발지혜 2020. 3. 1. 13:16

bbm - 5일차

class Main {
  public static void main(String[] args) {
    홍길동 길동 = new 홍길동();
    System.out.print(길동.이름);
    System.out.println(길동.나이);
    System.out.println(길동.직업);

    홍길동 길동2 = new 홍길동();
    길동2.이름 = "홍길순";
    길동2.나이 = 31;
    길동2.직업 = "디자이너";
    System.out.print(길동2.이름);
    System.out.println(길동2.나이);
    System.out.println(길동2.직업);

    자동차 car1 = new 자동차();
    System.out.println(car1.속력);
    car1.감속();
    System.out.println(car1.속력);
    car1.가속();
    car1.가속();
    System.out.println(car1.속력);

    car1.달리다();
  }
}

class 홍길동 {
  String 이름 = "홍길동";
  int 나이 = 29;
  String 직업 = "프로그래머";
}

class 자동차 {
  int 속력 = 100;

  void 가속 (){
    속력 = 속력 + 10;
  }

  void 감속 (){
    속력 = 속력 - 10;
  }

  void 달리다(){
    System.out.println("자동차가 달립니다.");

  }
}

▼ 출력
홍길동29
프로그래머
홍길순31
디자이너
100
90
110
자동차가 달립니다.