Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- mysql =
- @CreateDate
- mysql not equal null
- MYSQL
- MSSQL
- load order
- EmbeddedId
- 운동해서 광명찾자
- getEntityGraph
- 오블완
- @EntityListeners
- fractional seconds
- apatch poi
- +9:00
- yml
- deserializer
- 버전 문자열 비교
- 1*1000
- pooled-lo
- createEntityGraph
- spring boot
- mysql equal null
- RootGraph
- 티스토리챌린지
- Protecle
- sendFractionalSeconds
- NamedEntityGraph
- getDateCellValue
- AuditingEntityListener
- https
Archives
- Today
- Total
Hello
[JAVA] instanceof null 검사? 본문
728x90
문득 instanceof 할때 null 체크를 하고 비교해야하는지 궁금해서 알아보았습니다.
java11 오라클 문서에서 확인할 수 있습니다.
연산자의 RelationalExpression 피연산자 유형은 instanceof참조 유형이거나 null 유형이어야 합니다. 그렇지 않으면 컴파일 시간 오류가 발생합니다.
null instanceof Class 비교 시 결과는 false입니다. instanceof 연산자를 사용할 때 null 확인 필요하지 않습니다.
참고 : https://stackoverflow.com/questions/2950319/is-null-check-needed-before-calling-instanceof
https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-15.20.2
728x90
'java' 카테고리의 다른 글
[Hibernate] Inheritance Mapping (0) | 2024.11.07 |
---|---|
[Querydsl] Subquery 및 Result handling (0) | 2024.07.31 |
local에서 keytool or portecle 사용해 인증서 생성 및 ssl 적용 (0) | 2024.02.01 |
Java TimeUnit (0) | 2024.01.30 |
[Java]타임존 처리 ZonedDateTime + moment-timezone (0) | 2024.01.17 |