자바 interface 썸네일형 리스트형 인터페이스 interface 예제1) public class Test7 {public static void main(String[] args) {System.out.println(Demo7.a); //10 => 인터페이스는 static이 들어가 있기때문에 바로 사용가능.Ex7 ob=new Ex7();ob.write(); // 테스트.........ob.print(); // print.................Demo7 oo=new Ex7(); // 업캐스팅 //Demo7아버지를 Ex7자식으로 업캐스팅함.oo.write();//oo.print(); //에러((Ex7)oo).print(); // 다운 캐스팅, 업된것만 다운캐스팅 가능}} /* * 인터페이스 : 메소드가 선언만 있고 정의가 없다. * 변수는 static final 만.. 더보기 이전 1 다음