백엔드 개발자/Java[Spring]
Java NULL 체크 하기
vndn629
2023. 4. 7. 09:20
if ( test != null && test.length() != 0) {
앞에 null 체크 우선 진행
}
if (test != null && !test.equals("")){
앞에 null 체크 먼저 진행
}
반응형