Integer简介
Posted hongchengshise
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Integer简介相关的知识,希望对你有一定的参考价值。
// 当创建范围为[-128,127]时 Integer a = 1; Integer b = 1; Integer c = new Integer(1); System.out.println("a == b :" + (a == b)); System.out.println("a == c :" + (a == c)); System.out.println(); // 当创建范围不为[-128,127]时 Integer d = 128; Integer e = 128; Integer f = new Integer(128); System.out.println("d == e :" + (d == e)); System.out.println("d == f :" + (d == f)); System.out.println("d e f 互不相等(false为正确测试结果):" + (d == e || d == f || e == f)); System.out.println(); // 包装类均为值传递 Integer g = 0; Integer h = new Integer(130); Test1(g); Test2(h); System.out.println("g = "+g); System.out.println("h = "+h); } static void Test1(Integer t) { t = 1; System.out.println("Test1内: t = " + t); } static void Test2(Integer t) { t = 131; System.out.println("Test2内: t = " + t); } } 原文:https://blog.csdn.net/Cactus_Lrg/article/details/81489299
测试结果如下:
a == b :true
a == c :false
d == e :false
d == f :false
d e f 互不相等(false为正确测试结果):false
Test1内: t = 1
Test2内: t = 131
g = 0
h = 130
以上是关于Integer简介的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段
SpringCloud系列十一:SpringCloudStream(SpringCloudStream 简介创建消息生产者创建消息消费者自定义消息通道分组与持久化设置 RoutingKey)(代码片段
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段