아이템20 추상 클래스보다는 인터페이스를 우선하라
Effective Java 3e 아이템 20를 요약한 내용 입니다.
public interface Singer {
AudioClip sing(Song s);
}
public interface SongWriter {
Song compose(int chartPosition);
}
public interface SingerSongWriter extends Singer, Songwriter {
AudioClip sing(Song s);
Song compose(int chartPosition);
}정리
Last updated