Class/220729

Class(1-3)

pms93 2022. 7. 31. 15:19
package inheritance4;

public class Child1 extends Parent {

	@Override
	// Annotation
	// - 상위 클래스의 method를 재정의하여 사용한다는 의미다.
	// - method를 기존과 같이 사용할 것인지 혹은 재정의 하여 사용할 것인지 결정할 수 있다.
	public void method02() {
		System.out.println("Child1 method02");
	}

	public void method03() {
		System.out.println("Child1 method03");
	}
}