개발의 시작과 끝
2020.03.01 / Day - 17 자바 클래스 복습 본문
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
자동차가 달립니다.
'자바 복습' 카테고리의 다른 글
2020.03.05 / Day - 21 자바 생성자, super 생성자 복습 (0) | 2020.03.05 |
---|---|
2020.03.04 / Day - 20 자바 인스턴스 변수 복습 (0) | 2020.03.04 |
2020.03.02 / Day - 18 자바 abstract 클래스 복습 (0) | 2020.03.02 |
2020.02.21 / Day - 8 자바 배열 복습 (0) | 2020.02.21 |
2020.02.20 / Day - 7 자바 래퍼클래스 복습 (0) | 2020.02.20 |