다음 코드에서 문법적인 오류가 발생하거나 false로 출력되는 문장을 모두 선택하세요. (중복허용)

Parent parentA = new Parent(); // 1
Parent parentB = new Child(); // 2
Child childA = new Parent(); // 3
Child childB = new Child(); // 4

System.out.println(parentA instanceof Parent); // 5
System.out.println(parentB instanceof Parent); // 6
System.out.println(childA instanceof Parent); // 7
System.out.println(childB instanceof Parent); // 8

System.out.println(parentA instanceof Child); // 9
System.out.println(parentB instanceof Child); // 10
System.out.println(childA instanceof Child); // 11
System.out.println(childB instanceof Child); // 12

 

3, 7, 9, 11

'자바 문제 > 이론' 카테고리의 다른 글

제네릭 이론 문제1  (0) 2024.07.31
추상클래스 이론 문제  (0) 2024.07.24
상속 이론 문제  (0) 2024.07.17
static  (0) 2024.07.15
접근제어자  (0) 2024.07.11

+ Recent posts