java 中判断各种数据类型是否为空
2020-08-17 本文已影响0人
CharlesNg
- 字符串
java中判断字符串都是空的方法
if(s == null || s.length() == 0) 或者 if(s == null || s.isEmpty())
- 判断list是否为空(Map、Set同list)
if(list != null && !list.isEmpty())
- 判断date数据类型是否为空
Date date = //实例化的过程
if( date == null ) {}