Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Typescript
- 인텐트
- ViewPager
- Firebase
- html
- db
- centos7
- SERVLET
- div
- 비밀번호
- ImageView
- Android
- Java
- spring
- 하이브리드 앱
- 연동
- CSS
- CUSTOM
- 하이브리드
- Oracle
- 안드로이드
- spring boot
- hybrid app
- 개발 방법론
- 사용법
- radiobutton
- 강의
- 카카오톡
- php
- mysql
Archives
- Today
- Total
유혁의 개발 스토리
[Java] 6. super 란 무엇인가 본문
1. super 란 무엇인가
: 자손 클래스에서 조상 클래스로부터 상속받은 맴버를 참조하는 변수이다. 멤버변수와, 지역변수 이름의 같을 때 this를 사용해서 구별했듯이 상속받은 맴버와 자신의 맴버와 이름이 같을 때 super를 써서 구별할 수 있다.
class Parents {
int x = 10;
}
class Child extends Parents{
int x = 20;
public void print() {
System.out.println("x : " + x);
System.out.println("this.x : " + this.x);
System.out.println("super.x : " + super.x);
}
}
public class Main {
public static void main(String[] args) {
Child child = new Child();
child.print();
}
}
2. super() 호출 순서
class God {
int x = 100;
God(int x) {// 6
this.x = x;// 7
}
}
class Parents extends God {
int y = 10;
Parents(int x, int y) {// 4
super(x);// 5
this.y = y;// 8
}
}
class Child extends Parents {
int z = 20;
Child(int x, int y, int z) {// 2
super(x, y);// 3
this.z = z;// 9
}
public void print() {// 11
System.out.println("x : " + x);
System.out.println("y : " + y);
System.out.println("z : " + z);
}
}
public class Main {
public static void main(String[] args) {
Child child = new Child(100, 200, 300);// 1
child.print();// 10
}
}
'Java' 카테고리의 다른 글
[Java] 5. Object 클래스 (0) | 2022.03.16 |
---|---|
[Java] 4. static 메소드와 인스턴스 메소드 (0) | 2022.03.15 |
[Java] 3. 향상된 for문 (0) | 2022.03.15 |
[Java] 2. 변수 (0) | 2022.03.15 |
[Java] 1. Java를 시작하기 전에 (0) | 2020.11.30 |