[Java] 상속
상속 (Inheritance) - 클래스 사이의 상속 - 코드 중복을 제거하여 클래스를 간결하게 구현 - 부모 클래스 = 슈퍼 클래스(Super Class) / 상속받는 자식 클래스 = 서브 클래스(Sub Class) ※ 서브 클래스 - 슈퍼 클래스의 private 멤버를 제외한 모든 멤버에 접근 가능 ※ Example class Point{ private int x, y; public void set(int x, int y){ // private로 선언된 x, y에 접근을 위한 메소드 this.x = x; this.y = y; } public void showPoint(){ System.out.println("(" + x + "," + y + ")"); } } class ColorPoint extend..
2021.11.24