8장 상속
상속(Inheritance)
1. 기본 개념
예시 코드
public class Product {
private String brand;
private String pCode;
....
}
public class Tv extends Product {
int inch;
// 생성자
public Tv(String brand, String pCode, String pName, int price, int inch) {
super(brand, pCode, pName, price); // 부모(Product) 생성자 호출
this.inch = inch; // Tv 고유 필드 초기화
}
}2. 상속의 메모리 구조

정리
항목
설명
Last updated