package com.myPackage;

public class My2D{

	int x=10;
	int y=20;
	
	public My2D(){
		
	}
	
	public My2D(int x, int y){
		this.x=x;
		this.y=y;
	}
	
	public static void main(String[] args) {
		
	}
}
package com.myPackage;

public class My3D extends My2D{
	
	int z=30;
	
	public My3D(){
		//1.My2D클래스 안의 생성자 메서드를 실행합니다.
		//2.추가로 자기 자신의 메서드와 필드를 갖는다.
	}
	
	public static void main(String[] args){
		
		My3D my =new My3D();
		
		System.out.println(my.x);
		System.out.println(my.y);
		System.out.println(my.z);
		
	}
}

10

20

30

'Java > 2012.04 강좌' 카테고리의 다른 글

9일차 복습 상속  (0) 2012.04.16
9일차 복습  (0) 2012.04.16
8일차 Inheritance(상속)  (0) 2012.04.13
8일차 ArrayList  (0) 2012.04.13
8일차 패키지 만들기  (0) 2012.04.13

+ Recent posts