⭐ 기존 클래스에도 손쉽게 새로운 인터페이스를 구현해넣을 수 있다. public class Marine implements GroundAttackUnit, Comparable { private String name; private int health; @Override public int compareTo(Marine o) { return Integer.compare(health, o.getHealth()); } /* 인터페이스 override 생략 */ ... /* getter, setter 생략 */ ... } 이처럼 자바 플랫폼에서도 Comparable, Iterable, AutoCloseable 인터페이스가 새로 추가됐을 때 표준 라이브러리의 수많은 기존 클래스가 이 인터페이스들을 구현한 채 릴리..