일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- https://minkwon4.tistory.com/161
- 국회의원 & 높으신 분들 어록
- Today
- Total
OPEN between Secret
상속 만들어 보기 ~ 본문
class Point {
int x, y; //한 점을 구성하는 x,y 좌표
void set(int x, int y) {
this.x = x;
this.y = y;
}
void showPoint() { // 점의 좌표 출력
System.out.println("(" + x + "," + y + ")");
}
}
public class ColorPoint extends Point { //Point를 상속받은 ColorPoint 선언
String color;
void setColor(String color) {
this.color= color;
}
void showColorPoint(){
System.out.println(color); //컬러 점의 좌표 출력
showPoint(); //Point 클래스의 showPoint() 호출
}
public static void main(String[] args) {
ColorPoint cp = new ColorPoint();
cp.set(3, 4); //Point 클래스의 set() 메소드 호출
cp.setColor("red"); // 색 지정
cp.showColorPoint(); //컬러 점의 좌표 출력
}
}
-------------------------------------------------------------------------------
상속을 이용하여 기본적인 클래스를 만들어 봤음
ColorPoint 클래스가 Point클래스를 상속받았기 때문에 main 에서 ColorPoint 객체를 한개 만들고
그걸로 Point에 있는 메소드를 다 불러와서 사용할수 있다.
예제 - 명품 java programming -
'java > 예제' 카테고리의 다른 글
instanceof를 이용한 객체 구별 (0) | 2012.05.28 |
---|---|
상속 관계에 있는 클래스 간 멤버 접근 (0) | 2012.05.28 |
static을 이용한 예제 (0) | 2012.05.26 |
배열을 인자로 전달하기 (0) | 2012.05.19 |
객체 배열 예제 (상품 받아서 출력하기) (0) | 2012.05.12 |