摘要: 1 isNotEmpty(str)等价于 str != null && str.length > 0 2 isNotBlank(str) 等价于 str != null && str.length > 0 && str.trim().length > 0 3 同理 4 isEmpty 等价于 str == null || str.length == 0 5 isBlank 等价于 str ==... 阅读全文
posted @ 2016-11-22 11:42 涤新云 阅读(115432) 评论(3) 推荐(13) 编辑