학습인증
6일차
7일차
8일차
9일차
10일차
1. 기본미션 인증
- p. 330 문제 5번 실행 결과 인증 화면 캡처하기
package sec07.exam01;
public class Parent {
public String nation;
public Parent() {
this("대한민국");
System.out.println("Parent() call");
}
public Parent(String nation) {
this.nation = nation;
System.out.println("Parent(String nation) call");
}
}
package sec07.exam01;
public class Child extends Parent {
private String name;
public Child() {
this("홍길동");
System.out.println("Child() call");
}
public Child(String name) {
this.name = name;
System.out.println("Child(String name) call");
}
}
package sec07.exam01;
public class ChildExample {
public static void main(String[] args) {
// TODO Auto-generated method stub
Child child = new Child();
}
}
2. 선택미션
- 객체 지향 프로그래밍의 개념을 정리하기
난이도가 살짝 올라간 느낌.... 이네요.....
'학습단 > JAVA 학습단' 카테고리의 다른 글
12. 혼공자 12일차(예외 처리) (0) | 2023.07.18 |
---|---|
11. 혼공자 11일차(예외) (0) | 2023.07.17 |
10. 혼공자 10일차(중첩 인터페이스 & 중첩 클래스) (0) | 2023.07.15 |
9. 혼공자 9일차(인터페이스) (0) | 2023.07.14 |
8. 혼공자 8일차(상속) (0) | 2023.07.13 |