2023.11.06
isBlank, isEmpty 둘 다 문자열이 비어있는지 확인하는 메서드이다.
"".isEmpty()
true
" ".isEmpty()
false
"".isBlank()
" ".isBlank()
isBlank()