Defining an Interface 인터페이스 정의하기
인터페이스 정의 하기 Defining an Interface interface 선언은 modifiers, 키워드 interface, interface 이름, 쉼표로 분리된 부모 interface 목록(if any), interface 몸체로 구성됩니다. 예를 들면: An interface declaration consists of modifiers, the keyword interface, the interface name, a comma-separated list of parent interfaces (if any), and the interface body. For example:public interface GroupedInterface extends Interface1, Interface2, In..
2016. 1. 5.