java 中判断各种数据类型是否为空

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

猜你喜欢

热点阅读