Java 中奇怪的整数装箱
我刚刚看到类似这样的代码:
public class Scratch
{
public static void main(String[] args)
{
Integer a = 1000, b = 1000;
System.out.println(a == b);
Integer c = 100, d = 100;
System.out.println(c == d);
}
}
当运行时,这段代码将打印出:
false
true
我明白为什么第一个是 false
:因为这两个对象是单独的对象,所以 ==< /code> 比较引用。但我不明白,为什么第二个语句返回
true
?当整数的值在一定范围内时,是否会出现一些奇怪的自动装箱规则?这是怎么回事?
I just saw code similar to this:
public class Scratch
{
public static void main(String[] args)
{
Integer a = 1000, b = 1000;
System.out.println(a == b);
Integer c = 100, d = 100;
System.out.println(c == d);
}
}
When ran, this block of code will print out:
false
true
I understand why the first is false
: because the two objects are separate objects, so the ==
compares the references. But I can't figure out, why is the second statement returning true
? Is there some strange autoboxing rule that kicks in when an Integer's value is in a certain range? What's going on here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
true
行实际上是由语言规范保证的。来自第 5.1.7 节:讨论继续,表明虽然你的第二行输出是有保证的,但第一行却没有(参见下面引用的最后一段):
The
true
line is actually guaranteed by the language specification. From section 5.1.7:The discussion goes on, suggesting that although your second line of output is guaranteed, the first isn't (see the last paragraph quoted below):
输出:
是的,第一个输出是为了比较参考而产生的; 'a' 和 'b' - 这是两个不同的参考。在第 1 点中,实际上创建了两个引用,类似于 -
生成第二个输出是因为当
Integer
落入某个范围(从-128 至 127)。在第 2 点,没有为“d”创建 Integer 类型的新引用。它没有为整数类型引用变量“d”创建新对象,而是仅分配先前创建的由“c”引用的对象。所有这些都是由JVM
完成的。这些内存节省规则不仅适用于整数。出于节省内存的目的,以下包装器对象的两个实例(通过装箱创建时)将始终为 ==,其中它们的原始值相同 -
\ 的 字符u007f
(7f 是十进制的 127)Output:
Yep the first output is produced for comparing reference; 'a' and 'b' - these are two different reference. In point 1, actually two references are created which is similar as -
The second output is produced because the
JVM
tries to save memory, when theInteger
falls in a range (from -128 to 127). At point 2 no new reference of type Integer is created for 'd'. Instead of creating a new object for the Integer type reference variable 'd', it only assigned with previously created object referenced by 'c'. All of these are done byJVM
.These memory saving rules are not only for Integer. for memory saving purpose, two instances of the following wrapper objects (while created through boxing), will always be == where their primitive values are the same -
\u007f
(7f is 127 in decimal)整数缓存是 Java 版本 5 中引入的一项功能,主要目的是:
输出:
True
输出:
False
怎么办?
实际上,当我们为 Integer 对象赋值时,它会在幕后进行自动提升。
实际上是调用Integer.valueOf()函数
valueOf(int)
的具体细节描述:
当需要 -128 到 127 范围内的值时,它每次都会返回一个恒定的内存位置。
但是,当我们需要一个大于 127 的值时,
return new Integer(i);
每次启动一个对象时都会返回一个新引用。
此外,Java 中的
==
运算符用于比较两个内存引用而不是值。Object1
位于 1000 处,包含值 6。< br>Object2
位于 1020,包含值 6。Object1 == Object2
为False
,因为它们具有不同的内存位置,但包含相同的值。Integer Cache is a feature that was introduced in Java Version 5 basically for :
OUTPUT:
True
OUTPUT:
False
HOW?
Actually when we assign value to an Integer object, it does auto promotion behind the hood.
is actually calling Integer.valueOf() function
Nitty-gritty details of
valueOf(int)
Description:
When a value within range of -128 to 127 is required it returns a constant memory location every time.
However, when we need a value thats greater than 127
return new Integer(i);
returns a new reference every time we initiate an object.
Furthermore,
==
operators in Java is used to compares two memory references and not values.Object1
located at say 1000 and contains value 6.Object2
located at say 1020 and contains value 6.Object1 == Object2
isFalse
as they have different memory locations though contains same values.某个范围内的整数对象(我认为可能是 -128 到 127)会被缓存并重新使用。超出该范围的整数每次都会获得一个新对象。
Integer objects in some range (I think maybe -128 through 127) get cached and re-used. Integers outside that range get a new object each time.
是的,有一个奇怪的自动装箱规则,当值在一定范围内时就会生效。当您将常量分配给对象变量时,语言定义中没有任何内容表明必须创建新对象。它可以重用缓存中的现有对象。
事实上,JVM 通常会为此目的存储小整数的缓存,以及 Boolean.TRUE 和 Boolean.FALSE 等值。
Yes, there is a strange autoboxing rule that kicks in when the values are in a certain range. When you assign a constant to an Object variable, nothing in the language definition says a new object must be created. It may reuse an existing object from cache.
In fact, the JVM will usually store a cache of small Integers for this purpose, as well as values such as Boolean.TRUE and Boolean.FALSE.
我的猜测是,Java 保留了已经“装箱”的小整数的缓存,因为它们非常常见,并且与创建新对象相比,重用现有对象可以节省大量时间。
My guess is that Java keeps a cache of small integers that are already 'boxed' because they are so very common and it saves a heck of a lot of time to re-use an existing object than to create a new one.
这是一个有趣的观点。
在Effective Java一书中建议始终为您自己的类覆盖 equals 。另外,要检查 java 类的两个对象实例的相等性,请始终使用 equals 方法。
返回:
That is an interesting point.
In the book Effective Java suggests always to override equals for your own classes. Also that, to check equality for two object instances of a java class always use the equals method.
returns:
将 int 文字直接分配给 Integer 引用是自动装箱的一个示例,其中文字值到对象转换代码由编译器处理。
因此,在编译阶段,编译器会将
Integer a = 1000, b = 1000;
转换为Integer a = Integer.valueOf(1000), b = Integer.valueOf(1000);
。因此,
Integer.valueOf()
方法实际上为我们提供了整数对象,如果我们查看Integer.valueOf()
方法我们可以清楚地看到方法缓存-128 到 127(含)范围内的整数对象。因此,如果传递的 int 文字大于 -128 且小于,则
Integer.valueOf()
该方法不会创建并返回新的整数对象,而是从内部IntegerCache
返回 Integer 对象大于 127。Java缓存这些整数对象,因为这个范围的整数在日常编程中被大量使用,从而间接节省了一些内存。
当类由于静态块而被加载到内存中时,缓存会在第一次使用时初始化。缓存的最大范围可以通过
-XX:AutoBoxCacheMax
JVM选项来控制。这种缓存行为不仅仅适用于 Integer 对象,与 Integer.IntegerCache 类似,我们也有分别用于
Byte、Short、Long、Character
的ByteCache、ShortCache、LongCache、CharacterCache
。您可以阅读我的文章 Java 整数缓存 - 为什么使用 Integer.valueOf(127) 来了解更多信息== Integer.valueOf(127) 为 True。
Direct assignment of an int literal to an Integer reference is an example of auto-boxing, where the literal value to object conversion code is handled by the compiler.
So during compilation phase compiler converts
Integer a = 1000, b = 1000;
toInteger a = Integer.valueOf(1000), b = Integer.valueOf(1000);
.So it is
Integer.valueOf()
method which actually gives us the integer objects, and if we look at the source code ofInteger.valueOf()
method we can clearly see the method caches integer objects in the range -128 to 127 (inclusive).So instead of creating and returning new integer objects,
Integer.valueOf()
the method returns Integer objects from the internalIntegerCache
if the passed int literal is greater than -128 and less than 127.Java caches these integer objects because this range of integers gets used a lot in day to day programming which indirectly saves some memory.
The cache is initialized on the first usage when the class gets loaded into memory because of the static block. The max range of the cache can be controlled by the
-XX:AutoBoxCacheMax
JVM option.This caching behaviour is not applicable for Integer objects only, similar to Integer.IntegerCache we also have
ByteCache, ShortCache, LongCache, CharacterCache
forByte, Short, Long, Character
respectively.You can read more on my article Java Integer Cache - Why Integer.valueOf(127) == Integer.valueOf(127) Is True.
在 Java 中,整数的装箱范围在 -128 到 127 之间。当您使用此范围内的数字时,可以将其与 == 运算符进行比较。对于范围之外的 Integer 对象,您必须使用 equals。
In Java the boxing works in the range between -128 and 127 for an Integer. When you are using numbers in this range you can compare it with the == operator. For Integer objects outside the range you have to use equals.
如果我们检查
Integer
类的源代码,我们可以找到valueOf
方法就像这样:这解释了为什么
Integer
对象是在 -128 (Integer.low
) 到 127 (Integer.high
) 范围内,是自动装箱期间相同的引用对象。我们可以看到有一个类IntegerCache
负责处理Integer
缓存数组,它是Integer
类的私有静态内部类。还有另一个有趣的例子可能有助于理解这种奇怪的情况:
If we check the source code of the
Integer
class, we can find the source of thevalueOf
method just like this:This explains why
Integer
objects, which are in the range from -128 (Integer.low
) to 127 (Integer.high
), are the same referenced objects during the autoboxing. And we can see there is a classIntegerCache
that takes care of theInteger
cache array, which is a private static inner class of theInteger
class.There is another interesting example that may help to understand this weird situation:
在 Java 5 中,引入了一项新功能来节省内存并提高整数类型对象处理的性能。整数对象在内部缓存并通过相同的引用对象重用。
这适用于 –127 到 +127 范围内的整数值
(最大整数值)。
此整数缓存仅适用于自动装箱。整数对象将
使用构造函数构建它们时不会被缓存。
有关更多详细信息,请访问以下链接:
整数缓存详细信息
In Java 5, a new feature was introduced to save the memory and improve performance for Integer type objects handlings. Integer objects are cached internally and reused via the same referenced objects.
This is applicable for Integer values in range between –127 to +127
(Max Integer value).
This Integer caching works only on autoboxing. Integer objects will
not be cached when they are built using the constructor.
For more detail pls go through below Link:
Integer Cache in Detail
Integer 类包含 -128 到 127 之间的值的缓存,这是 JLS 5.1.7。拳击转换。因此,当您使用
==
检查此范围内的两个Integer
是否相等时,您会得到相同的缓存值,并且如果您比较两个Integer< /code>s 超出此范围,您将得到两个不同的值。
您可以通过更改 JVM 参数来增加缓存上限:
或
参见内部
IntegerCache
类:Class
Integer
contains cache of values between -128 and 127, as it required by JLS 5.1.7. Boxing Conversion. So when you use the==
to check the equality of twoInteger
s in this range, you get the same cached value, and if you compare twoInteger
s out of this range, you get two diferent values.You can increase the cache upper bound by changing the JVM parameters:
or
See inner
IntegerCache
class: