728x90
public class Ex16 {
public static void main(String[] args){
Super parent = new Sub3();
Sub3 child = new Sub3();
parent.method();
System.out.println();
child.method();
}
}
class Sub3 extends Super{
int x= 200;
void method(){
System.out.println("x="+x);
System.out.println("this.x="+this.x);
System.out.println("super.x="+super.x);
super.method(); //꼼수
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch07-18. 객체 지향 18 (0) | 2017.08.22 |
---|---|
[JAVA] ch07-17. 객체 지향 17 (0) | 2017.08.22 |
[JAVA] ch07-15. 객체 지향 15 (0) | 2017.08.22 |
[JAVA] ch07-14. 객체 지향 14 (0) | 2017.08.22 |
[JAVA] ch07-13. 객체 지향 13 (0) | 2017.08.22 |
댓글