首页
新闻
博问
专区
闪存
班级
我的博客
我的园子
账号设置
退出登录
注册
登录
博客园
首页
新随笔
联系
管理
随笔 - 351
文章 - 0
评论 - 12
2020年3月22日
isEmpty和isBlank的区别
摘要:isEmpty只判断是否为null和长度是否为0 public static boolean isEmpty(String str) { return str == null || str.length() == 0; } isBlank判断的是该字符串是否为空白字符串 public static
阅读全文
posted @ 2020-03-22 14:19 踏月而来
阅读(116)
评论(0)
推荐(0)
编辑