JAVA 과부하 (overload) 와 덮어 쓰기 (override) 에서 당신 이 모 르 는 함정
public class ParentClass {
}
public class ChildClass extends ParentClass{
}
public class Test {
public void testOverLoad(ParentClass cls){
System.out.println("It's ParentClass");
}
public void testOverLoad(ChildClass cls){
System.out.println("It's ChildClass");
}
public static void main(String[] args) {
Test test = new Test();
ParentClass parentCls = new ParentClass();
ParentClass childCls = new ChildClass();
test.testOverLoad(parentCls);
test.testOverLoad(childCls);
}
}
출력 결과 가 무엇 인지 생각해 보 세 요. 정 답 은:
It's ParentClass
It's ParentClass
재 부팅 방법 을 결정 하 는 이 유 는 컴 파일 할 때 발생 하 는 것 이지 실행 할 때 발생 하 는 것 이 아니 라 컴 파일 할 때 발생 하 는 것 입 니 다.
parentCls 와 childCls 의 유형 은 모두 ParentClass 입 니 다.
덮어 쓰 기 는 부모 클래스 와 하위 클래스 에 같은 이름 의 매개 변 수 를 가 지 는 방법 을 말 합 니 다. 하위 클래스 의 방법 은 부모 클래스 를 덮어 쓰 는 방법 입 니 다. 아래 의 예 를 보십시오.
public class ParentClass {
public String str1 = "Parent1";
public String str2 = "";
public ParentClass(){
str2="Parent2";
}
public void func(){
System.out.println("ParentClass.func");
}
public String getStr2() {
return str2;
}
}
public class ChildClass extends ParentClass{
public String str1 = "Child1";
public String str2 = "";
public ChildClass(){
str2="Child2";
}
public void func(){
System.out.println("ChildClass.func");
}
public String getStr2() {
return str2;
}
}
public class Test
public static void main(String[] args) {
ParentClass childCls = new ChildClass();
System.out.println(childCls.str1);
System.out.println(childCls.str2);
System.out.println(childCls.getStr2());
childCls.func();
}
}
출력 결 과 는 무엇 일 까요? 정 답 은:
Parent1
Parent2
Child2
ChildClass.func
방법 에 대한 덮어 쓰기 가 실 행 될 때 발생 하기 때문에 하위 클래스 의 방법 이 호출 됩 니 다. 변수 에 대한 덮어 쓰 기 는 컴 파일 할 때 결 정 됩 니 다. childCls 는 컴 파일 할 때 형식 이 ParentClass 이기 때문에 변수 에 대한 직접 접근 은 ParentClass 에서 정 의 된 값 입 니 다. 구성원 변수 에 대해 컴 파일 러 는 부모 클래스 와 하위 클래스 의 모든 구성원 변 수 를 복사 본 으로 저장 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.