250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 테스트코드
- 프록시
- 참조변수
- 코드트리
- http 메시지 컨버터
- fielderror
- HttpServletResponse
- 추상클래스
- 스프링컨테이너
- html form
- DI
- equals()
- ocp
- 의존관계
- 다형성
- @configuration
- 인터페이스
- 티스토리챌린지
- java
- 스프링
- 김영한
- objecterror
- 오버라이딩
- 코드트리조별과제
- 백준
- 코딩테스트
- 서블릿
- 싱글톤
- 오블완
- JSON
Archives
- Today
- Total
minOS
자바의 정석 ch7-1,2 상속 본문
728x90
상속(inheritance)
- 기존의 클래스로 새로운 클래스를 작성하는 것 (코드의 재사용)
-두 클래스를 부모와 자식으로 관계를 맺어 주는 것
형태
class 자식클레스 extends 부모클래스 {
}
예시
class Parent {}
class Child extends Parent {
//..
}
- 자손은 조상의 모든 멤버를 상속 받는다 (생성자,초기화 블럭 제외)
-자손의 멤버 개수는 조상보다 적을 수 없다.
class Parent{ int age; } class Child extends Parent{ void play(){ System.out.println("놀자"); } } public class Main { public static void main(String[] args) { Child child = new Child(); child.play(); System.out.println(child.age); } }
출력값
상속을 받지 않는 경우
class Point3D { int x; int y; int z; } public class Main { public static void main(String[] args) { Point3D point3D = new Point3D(); point3D.x =3; point3D.y =7; point3D.z =5; System.out.printf("%d %d %d",point3D.x,point3D.y,point3D.z); }
출력값
상속을 받는 경우
class Point { static int x =3 ; static int y =7; } class Point3D extends Point { int z; } public class Main { public static void main(String[] args) { Point3D point3D = new Point3D(); point3D.z =5; System.out.printf("%d %d %d \n", point3D.x,point3D.y,point3D.z); Point.x=2; Point.y=9; System.out.printf("%d %d %d", point3D.x,point3D.y,point3D.z); } }
출력값
요약
자식 클래스는 부모 클래스로 부터 영향을 받는다.
그러나 부모 클래스는 자식 클래스에게 영향을 받지 않는다.
728x90
'TIL > 남궁성의 자바의 정석' 카테고리의 다른 글
자바의 정석 ch7-12~14 패키지, 클래스 패스 (0) | 2023.11.30 |
---|---|
자바의 정석 ch7-10,11 참조변수 super, 생성자 super() (0) | 2023.11.27 |
자바의 정석 ch7-7~9 오버라이딩 (2) | 2023.11.23 |
자바의 정석 ch7-5,6 단일상속, Object클래스 (4) | 2023.11.22 |
자바의 정석 ch7-3,4 포함 (1) | 2023.11.22 |