// Phone 클래스(interface) public interface Phone { // public static final 생략 가능(어차피 상수 필드이므로) char[] NUMBERPAD = {'1', '2', '3', '4', '5', '6', '7', '8', '9', '*', '0', '#'}; // 추상 메소드 /*public abstract*/ String makeCall(); // 전화 걸기 String takeCall(); // 전화 받기 // public abstract 생략 가능(interface이므로) } // Camera 클래스(interface) public interface Camera { String picture(); // 촬영 방식 추상메소드 } // CellPhone..