Integer a0 = ;
Integer a1 = ;
Integer b0 = ;
Integer b1 = ;
int c = ; System.out.println(a0 == a1); >>>> true //Integer 对象-128 ~ 127 会缓存,不会新建对象 所以相等 System.out.println(b0 == b1); >>>> false //对象-128 ~ 127 会缓存 但是之外的数据会重新new System.out.println(b0 == c); >>>> true //这里Integer 会自动拆箱成int类型
相关文章
- java 自动拆箱
- 你知道吗?chrome自动更新到104版本,居然引起Java服务内存泄漏
- hdfs java关闭安全模式,hadoop hdfs block丢失导致自动进入安全模式Safe mode will be turned off automatically...
- java代码自动生成
- OpenCV自动滑块验证(Java版)-前提
- 一个简单的加减乘除自动生成小程序(JAVA)
- ai自动写JAVA代码,人工智能自动写作软件2.0时代(示例代码)
- 接口自动化项目搭建(Java+testng+maven+git+springboot)
- JAVA SpringBoot 项目打成jar包供第三方引用自动配置(Spring发现)解决方案
- java Web 启动时自动执行代码的几种方式