Java Integer及int装箱拆箱对比

网友投稿 230 2023-03-15

Java Integer及int装箱拆箱对比

示例代码:

class BoxIntInteger {

public static void main(String[] args) {

Integer a = new Integer(10111);

http:// int b = 10111;

boolean equal1 = a == b;

boolean equal2 = a.equals(b);

System.out.println(equal1);

System.out.println(equal2);

}

}

反编译字节码:

public static void main(String args[])

{

Integer a = new Integer(10111);

int b = 10111;

boolean equal1 = a.intValue() == b;

boolean equal2 = a.equals(Integer.valueOf(b));

System.out.printlnhttp://(equal1);

System.out.println(equal2);

}

1:可以看出对于Integer与int使用==比较大小的话,优先Integer拆箱。

2: 如果使用equals比较大小的话,则int装箱。

提示:对于Integer与int之间大小比较优先使用equals比较,否则容易出现空指针,例如:

Integer c= null;

System.out.println(c==1);

原因:由于Integer需要调用intValue进行拆箱,因而空指针。

Integer与Integer必须使用equals方法比较,这个就不必解释了。但是通常我们可以看先Integer与Integer之间使用==也可以正确比较,原因是:Integer对于-128到127之间的数字在缓存中拿,不是创建新对象。

缓存获取数据源码:java.lang.Integer#valueOf(int)

public static Integer valueOf(int i) {

if (i >= IntegerCache.low && i <= IntegerCache.high)

return IntegerCache.moXFKAHXqcache[i + (-IntegerCache.low)];

return new Integer(i);

}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:数据库智能运维平台(数据库智能管理系统)
下一篇:数据库运维平台(数据库运维平台有哪些)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~