반응형
인터페이스
-
[JAVA 31] 자바 인터페이스 ( Interface )Language/Java 2018. 2. 14. 19:05
■ Interface ( 인터페이스 )1. 설명1) 모든 멤버 변수가 상수2) 모든 메소드가 추상 메소드 로 구성된 ' 틀 ' 2. 특징1) interface 앞에는 abstract가 생략이 되어 있다.2) interface 의 멤버 변수 앞에는 public static final 이 생략 되어 있다.3) interface 의 메소드 앞에는 public abstract 가 생략 되어 있다.4) static 메소드를 가질 수 없다.5) interface 앞에 접근 제한자는 public 과 default 가 가능하다. 123456public abstract interface InterfaceS1{ // interface study 1 public static final int A = 10; public ab..