package com.inter2;//인터페이스 다중 상속
interface Inter1{
public abstract int getA(); //추상 메소드
}
interface Inter2{
public int getB(); //추상 메소드(abstract 생략가능)
}
//인터페이스간 다중 상속
interface Inter3 extends Inter1,Inter2{
public int getDate(); //추상 메소드
}
interface Inter4{
public int getC();//추상 메소드
}
public class Round01 implements Inter3,Inter4{
//Round01에 인터페이스를 구현하면
//해당인터페이스의 추상 메소드는 반드시 일반 메소드로 구현되어야 함
public int getA(){
return 10;
}
public int getB(){
return 20;
}
public int getC(){
return 30;
}
public int getDate(){
return 40;
}
public static void main(String[] args){
}
}