목록2025/06/09 (1)
컴퓨터공학 💻 도서관📚
Part2. 3-11 인터페이스(interface)
인터페이스모든 메서드가 추상 메서드로 선언된다 (public abstract)모든 변수는 상수로 선언된다 (public static final)public interface 인터페이스 이름{ // interface 라고 쓴다. public static final float pi = 3.14F; // 상수 public void makeSomething(); // 인터페이스의 모든 메서드는 추상 메서드}public class 클래스 이름 implements 인터페이스 이름{ // 위 인터페이스를 구현하는 클래스} 내가 public abstract 키워드를 넣지 않아도 모든 메서드는 public abstract로 컴파일 된다. 자바 8 부터는 디폴트 메서드(default me..
✅🌲강의 복습 노트/패캠 JavaSpring 강의,코드 복습
2025. 6. 9. 22:32