标签:等价 str util amp length || utils == lan
1,isNotEmpty(str)等价于 str != null && str.length > 0。
2,isNotBlank(str) 等价于 str != null && str.length > 0 && str.trim().length > 0。
同理:
1,isEmpty 等价于 str == null || str.length == 0。
2,isBlank 等价于 str == null || str.length == 0 || str.trim().length == 0。
StringUtils中 isNotEmpty 和isNotBlank的区别
标签:等价 str util amp length || utils == lan
原文地址:https://www.cnblogs.com/chuanqi1995/p/11846867.html