string.is Empty() 또는 ""equals(string)"를 사용해야 합니까? 난 보통 이걸 테스트하고 있어string == null그래서 나는 null-safe 테스트에 대해 별로 염려하지 않는다.어떤 걸로 할까요? String s = /* whatever */; ... if (s == null || "".equals(s)) { // handle some edge case here } 또는 if (s == null || s.isEmpty()) { // handle some edge case here } 그 점에 대해서 - 그렇다isEmpty()다른 일도 하다return this.equals("");또는return this.length() == 0;?주요 장점"".equals(s)null 체크..