码迷,mamicode.com
首页 > 其他好文 > 详细

StringUtils中 isNotEmpty 和isNotBlank的区别

时间:2019-11-13 11:16:39      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:等价   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!