摘要: isNotEmpty(str)等价于 str != null && str.length > 0 isNotBlank(str) 等价于 str != null && str.length > 0 && str.trim().length > 0 同理 isEmpty 等价于 str == null || str.length == 0 isBlank 等价于 str == null || st... 阅读全文
posted @ 2019-04-17 15:19 litf 阅读(273) 评论(0) 推荐(0)