//. 인터페이스란? | 인터페이스의 요소 추상 메서드 상수 디폴트 메서드 정적 메서드 private 메서드 | 인터페이스 선언과 구현 public interface Calc { // 인터페이스에서 선언한 변수는 컴파일 과정에서 상수로 변환됨 double PI = 3.14; int ERROR = –9999999; // 인터페이스에서 선언한 메서드는 컴파일 과정에서 추상 메서드로 변환됨 int add(int num1, int num2); int substract(int num1, int num2); int times(int num1, int num2); int divide(int num1, int num2); } Calc ( Interface ) ⬆ Calculator ( Abstract Class ) ⬆..