关于Integer的空指针异常
关于Integer的空指针异常
问题来源
当用Integer
来接收数据后,需要将数据与0
进行比较,看是不是0
,但是如果Integer
接收的数据是null
的时候,就会报空指针异常。
public static void main(String[] args) { Integer a = null; System.out.println(0 == a); }
原因分析
Integer
是包装类型,而我们直接写的0
是int
类型,属于基本类型,所以在比较的时候会自动进行拆箱操作,将Integer
转换成int
,此时因为变量是null
,所以就会空指针异常。
public static void main(String[] args) { Integer a = null; System.out.println(Integer.valueOf(0) == a); }
如果我们给0
做一个装箱操作,此时就不会有空指针异常了.
所以在使用包装类型与基本类型进行比较的时候,需要先对包装类型的数据进行判空的处理,防止出现空指针异常
转自:https://blog.csdn.net/weixin_43080383/article/details/120709831
本文来自博客园,作者:迷糊桃,转载请注明原文链接:https://www.cnblogs.com/mihutao/p/15718412.html