반응형
인터페이스
인터페이스 설명 보러가기
https://skylarcoding.tistory.com/253
다형성
다형성 설명 보러가기
https://skylarcoding.tistory.com/251
인터페이스와 다형성
오버라이딩 규칙은 조상(public) 보다 접근 범위가 넓어야 한다.
class Fighter 은 인터페이스 Fightable 을 implements (구현) 했기 때문에 Fightable 로 반환할 수 있다.
class Fighter extends Unit2 implements Fightable {
public void move(int x, int y){
System.out.println("[" + x + "," + y + "]로 이동");
}
public void attack(Fightable f){
System.out.println(f+"를 공격");
}
// 싸울 수 있는 상대를 불러온다.
Fightable getFightable(){
Fightable f = new Fighter(); // Fighter를 생성해서 반환
return f;
}
}
public class FighterTest(){
public static void main(String[] args){
Fighter f = new Fighter();
Fightable f2 = f.getFIghtable();
}
}
반응형