upcasting1 [오개념 정리] Upcasting 다음과 같은 클래스 Parent, Child가 존재한다고 가정 해 봅시다. public class Parent { int a; } public class Child extends Parent{ int b; } 즉, Child 클래스는 Parent 클래스를 부모 클래스로 상속 받습니다. 이후 다음 코드를 실행 해 봅니다. public class Main { public static void main(String[] args) { Parent upcasting = new Child(); System.out.println("upcasting class = " + upcasting.getClass()); } } 위 코드의 결과 값은 무엇이 나올까요? 정답은 upcasting class = class Child .. 2023. 5. 20. 이전 1 다음