当前位置:  开发笔记 > 编程语言 > 正文

Java中的整数实例和int原始值比较

如何解决《Java中的整数实例和int原始值比较》经验,为你挑选了1个好方法。

Java使用Unboxing比较基元和包装类时的概念.Integer变量中的哪个位置被转换为基本int类型.

以下是您的代码所发生的事情:

Integer a = 5; //a of type Integer i.e. wrapper class
int b = 5; //b of primitive int type

System.out.println(a==b) // a is unboxed to int type and compared with b, hence true

有关更多信息Autoboxing(反向拆箱)和Unboxing 此链接.



1> Darshan Lila..:

Java使用Unboxing比较基元和包装类时的概念.Integer变量中的哪个位置被转换为基本int类型.

以下是您的代码所发生的事情:

Integer a = 5; //a of type Integer i.e. wrapper class
int b = 5; //b of primitive int type

System.out.println(a==b) // a is unboxed to int type and compared with b, hence true

有关更多信息Autoboxing(反向拆箱)和Unboxing 此链接.

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有