클래스 test1 에


public void test()

{

System.out.print(test1입니다)

}



인터페이스  test2 에


public void test();


가 있다고치자



그래서


public class sibal extends test1 impliments test2


라는 sibal 클래스에서


test() 메소드를 어떻게 다루고 어떻게 되는거냐


--

무조건 인터페이스 test2의 test메소드를 구체화시켜야하기때문에


test 메소드를 구체화시켜서


test1 클래스의 test메소드는 씹어먹고


test2인터페이스의 test 를 사용??