Perguntas com a marcação «string-utils»

11
StringUtils.isBlank () vs String.isEmpty ()
Encontrei um código com o seguinte: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); Isso parece ser funcionalmente equivalente ao seguinte: String foo = getvalue("foo"); if (foo.isEmpty()) doStuff(); else doOtherStuff(); Existe uma diferença entre os dois ( org.apache.commons.lang3.StringUtils.isBlanke java.lang.String.isEmpty)?
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.