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 |
Tags
- c3 step graph
- python popen
- subporcess path
- python os
- InfluxDB
- gcc regex
- selinux port 등록
- 백준
- c3 second
- gcc 업데이트
- linux시간으로 변경
- python subprocess
- influxdb 설치
- snmp
- 1697
- c3 초
- c++ 정규식
- centos pyhon 설치
- regex_search
- c3 축 가리기
- 정규식 컴파일
- 정규식 문자열 출력
- 정규식 활용
- semanage
- snmp test
- c3 축 없애기
- g++ 업데이트
- telegraf
- grafana dashboard
- CentOS7
Archives
- Today
- Total
리셋 되지 말자
super 키워드 본문
super 키워드
this는 객체 멤버 메서드 내부에서 객체 자신을 지칭하는 키워드이다.
super는 바로 위 상위 클래스의 인스턴스를 지칭하는 키워드이다.
예제
package super01;
class 동물{
void method() {
System.out.println("동물");
}
}
class 조류 extends 동물 {
void method() {
super.method();
System.out.println("조류");
}
}
class 펭귄 extends 조류 {
void method() {
super.method();
System.out.println("펭귄");
}
}
public class Driver {
public static void main(String[] args) {
펭귄 뽀로로 = new 펭귄();
뽀로로.method();
}
}
- 결과
동물
조류
펭귄
- super 키워드로 상위 클래스의 인스턴스 메서드를 호출하고 있다.
- super.super 형태로 상위의 상위 클래스의 인스턴스에는 접근이 불가능하다.
예제2
package super01;
class 동물{
String ani = "animal";
void method() {
System.out.println("동물");
}
}
class 조류 extends 동물 {
String bir = "bird";
void method() {
super.method();
System.out.println(super.ani);
System.out.println("조류");
}
}
class 펭귄 extends 조류 {
void method() {
super.method();
System.out.println(super.bir);
System.out.println("펭귄");
}
}
public class Driver {
public static void main(String[] args) {
펭귄 뽀로로 = new 펭귄();
뽀로로.method();
}
}
- 결과
동물
animal
조류
bird
펭귄
'Java(폐지) > Java 공부' 카테고리의 다른 글
클래스 멤머 메서드의 정적화 (0) | 2020.07.20 |
---|---|
this 키워드 (0) | 2020.07.20 |
java 8 람다 (0) | 2020.07.20 |
interface 키워드와 implements 키워드 (0) | 2020.07.20 |
package 키워드 (0) | 2020.07.20 |
Comments