Inflearn brand logo image

Inflearn Community Q&A

No author

This post's author information has been deleted.

Kim Young-han's Practical Java - Intermediate Level 1

Object polymorphism

instanceof

Written on

·

560

·

Edited

1

Instanceof 는 obj 가 어떠한 타입을 참조하고 있는지 알려줄 뿐만 아니라 자동으로 다운 캐스팅도 해주나요 ?

아니면 if( obj instanceof Dog) 가 아니라 if (obj instanceof Dog dog) 여서 다운 캐스팅이 저 괄호 안에서 다 처리가 된건가요 ?

 

(제가 첫번째 질문자인 것을 영광스럽게 생각합니다 ㅎㅎ...)

java객체지향

Answer 1

1

yh님의 프로필 이미지
yh
Instructor

안녕하세요. ghuhan18님

자바 16에 들어온 Pattern Matching for instanceof라는 기능인데요.

자바 16부터는 instanceof를 사용하면서 동시에 변수를 선언할 수 있습니다. 덕분에 인스턴스가 맞는 경우 직접 다운캐스팅 하는 코드를 생략할 수 있습니다.

자세한 내용은 자바 기본편

섹션 10. 다형성1 - instanceof 강의를 참고해주세요.

감사합니다.

No author

This post's author information has been deleted.

Ask a question