list、map、set、String、Date、Integer、BigDecimal 是否为空

一、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里有几个元素

二、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();

五、Date 是否为空

Date date=…… // 实例化
if(date == null) {
System.out.println("Date 为空");
} else {
System.out.println("Date 不为空");
}

六、Integer 是否为空

public static void main(String[] args){
    	Integer num = null;
    	if(num == null) {
    		System.out.println("Integer 为空");
    	} else {
    		System.out.println("Integer 不为空");
    	}
    	
    }

七、BigDecimal 是否为空

public static void main(String[] args){
    	BigDecimal num = null;
    	if(num == null) {
    		System.out.println("BigDecimal 为空");
    	} else {
    		System.out.println("BigDecimal 不为空");
    	}
    	
    }

你可能感兴趣的:(list、map、set、String、Date、Integer、BigDecimal 是否为空)