728x90 반응형 default1 [Java] 24. Interface5 (default , static) package chap8; /* * JDK8버전 이후부터 인터페이스의 멤버 메서드도 구현부를 가질수 있음. * default 메서드 : 인스턴스메서드 * static 메서드 : 클래스 메서드 */ interface Myinterface1 { void method(); default void method1() { System.out.println("Myinterface1의 default 메서드:method1"); } static void staticMethod() { System.out.println("Myinterface1의 static 메서드:staticMethod"); } } interface Myinterface2 { void method(); default void method1() { Syste.. 2022. 3. 22. 이전 1 다음 728x90 반응형