其他分享
首页 > 其他分享> > StringUtils.isBlank(str)和StringUtils.isEmpty(str)的区别

StringUtils.isBlank(str)和StringUtils.isEmpty(str)的区别

作者:互联网

StringUtils.isBlank(str)和StringUtils.isEmpty(str)的区别还是看他们的实现有何不同

StringUtils.isEmpty(CharSequence cs)实现源码

  public static boolean isEmpty(CharSequence cs) {
        return cs == null || cs.length() == 0;
    }

从源码发现StringUtils.isEmpty(CharSequence cs)是判断了cs为null或cs.length()=0,但是我们要判断空白字符或者换行符等特殊的转义字符时,它的长度都是大于0的,所以用isEmpty判断是不行的

StringUtils.isBlank(CharSequence cs)实现源码

        

测试代码:

    public static void main(String[] args) {
        //isWhitespace() 方法用于判断指定字符是否为空白字符,空白符包含:空格、tab 键、换行符。
        System.out.println(Character.isWhitespace('c'));
        System.out.println(Character.isWhitespace(' '));
        System.out.println(Character.isWhitespace('\n'));
        System.out.println(Character.isWhitespace('\t'));
        
        String str = "c";
        String str1 = "";
        String str2 = " ";
        String str3 = "\n";
        String str4 = "\t";
        System.out.println("is blank:" + StringUtils.isBlank(str3));
        System.out.println("is empty:" + StringUtils.isEmpty(str3));
    }
false
true
true
true
is blank:true
is empty:false

 

 

 

 

 

 

      


标签:isBlank,isEmpty,str,cs,isWhitespace,StringUtils,out
来源: https://www.cnblogs.com/guanbin-529/p/11729678.html