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){
		
	}
}


'Java > Interface' 카테고리의 다른 글

인터페이스 공통자료형 공통표준화  (0) 2012.04.11
클래스 -> 인터페이스 형변환  (0) 2012.04.11
인터페이스 쓰임새  (0) 2012.04.11
인터페이스 2  (0) 2012.04.11
인터페이스 기본  (0) 2012.04.11

+ Recent posts