728x90
public class Ex04 {
public static void main(String[] args){
Child child = new Child();
child.method();
}
}
class Parent{
int x =10;
}
class Child extends Parent{
void method(){
System.out.println("x= "+x);
System.out.println("this.x= "+this.x);
System.out.println("super.x= "+super.x);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch07-06. 객체 지향 6 (0) | 2017.08.22 |
---|---|
[JAVA] ch07-05. 객체 지향 5 (0) | 2017.08.22 |
[JAVA] ch07-03. 객체 지향 3 (0) | 2017.08.22 |
[JAVA] ch07-02. 객체 지향 2 (0) | 2017.08.22 |
[JAVA] ch07-01. 객체 지향 (0) | 2017.08.22 |
댓글