java 161 JAVA 16 - instanceof 신기능(Pattern Matching for instanceof) 자바 16부터는 instanceof를 사용하는 동시에 변수를 선언할 수 있다. 우선, 기존의 코드를 보면 public void call(Parent parent) { parent.parentMethod(); if (parent instanceof Child) { System.out.println("Child 인스턴스가 맞습니다"); Child child = (Child)parent; child.childMethod(); } } 이렇게 인스턴스가 맞는 경우 직접 다운캐스팅을 해줘야 하지만, instanceof의 신기능을 활용하면 public void call(Parent parent) { pa.. 2024. 8. 11. 이전 1 다음