List<T>.isEmpty(String str)//判断某字符串是否为空,为空的标准是 str==null 或 str.length()==0 List<T>.isBlank(String str)//判断某字符串是否为空或长度为 0 或由空白符 (whitespace) 构成 List<T>.isNotEmpty(String str)//等价于!isEmpty(String str) List<T>.isNotBlan(String str)//等价于!isBlank(String str)
评论 0