Java 참조변수 super, 생성자 super()
볼빵빵오춘기
참조변수 super 조상의 멤버를 자신의 멤버와 구별할 때 사용 객체 자신을 가리키는 참조변수. 인스턴스 메서드(생성자) 내에만 존재 ⇒ static메서드내에서는 사용불가 ※ 참고 super ⇒ 조상멤버, 자신멤버 구별 this ⇒ lv와 iv 구별에 사용 예제 코드1 더보기 class Hello{ public static void main(String args[]){ Child c = new Child(); c.method(); } } class Parent{ int x = 10; /* super.x */ } class Child extends Parent{ int x = 20; // this.x void method(){ System.out.println("x = " + x); System.out.p..