当前位置:   article > 正文

list、map、set、String、Date、Integer、BigDecimal 是否为空_list、set 判断空指针

list、set 判断空指针
一、list 是否为空
判断list里是否有元素的最佳的方法是:
if(list != null && !list.isEmpty()){
  //list存在且里面有元素
}

常规判断有:
list != null, list.size() != 0, list.isEmpty()

解释说明:
list!= null:判断是否存在list,null表示这个list不指向任何的东西,如果这时候你调用它的方法,那么就会出现空指针异常。
 
list.isEmpty():判断list里是否有元素存在  
 
list.size():判断list里有几个元素

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
二、map 是否为空

同 list

三、set 是否为空

同 list

四、String 是否为空
直接用if( str.equals(""))if( !str.isEmpty())if(str.length()>0)来判断:忽略了str为null的情况,str指向不确定的对象,无法调用一个确定的Sting对象的方法
 所以应该从以下4点出发:
(1)str == null;2"".equals(str);3)str.length <= 0;4)str.isEmpty();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
五、Date 是否为空
Date date=…… // 实例化
if(date == null) {
System.out.println("Date 为空");
} else {
System.out.println("Date 不为空");
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
六、Integer 是否为空
public static void main(String[] args){
    	Integer num = null;
    	if(num == null) {
    		System.out.println("Integer 为空");
    	} else {
    		System.out.println("Integer 不为空");
    	}
    	
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
七、BigDecimal 是否为空
public static void main(String[] args){
    	BigDecimal num = null;
    	if(num == null) {
    		System.out.println("BigDecimal 为空");
    	} else {
    		System.out.println("BigDecimal 不为空");
    	}
    	
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/141704
推荐阅读
相关标签
  

闽ICP备14008679号