«string-utils» 태그된 질문

11
StringUtils.isBlank () 및 String.isEmpty ()
나는 다음과 같은 코드를 만났다. String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); 이것은 기능적으로 다음과 같은 것으로 보입니다. String foo = getvalue("foo"); if (foo.isEmpty()) doStuff(); else doOtherStuff(); 두 ( org.apache.commons.lang3.StringUtils.isBlank와 java.lang.String.isEmpty) 의 차이점이 있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.