package ch08.sec07;public interface Service { // default method default void defaultMethod1() { System.out.println("defaultMethod1 종속 코드"); defaultCommon(); } default void defaultMethod2() { System.out.println("defaultMethod2 종속 코드"); defaultCommon(); } // private method private void defaultCommon() { System.out.println("defaultMethod 중복코드 ..