Weird Integer boxing in Java

前端 未结 12 1877
广开言路
广开言路 2020-11-22 00:15

I just saw code similar to this:

public class Scratch
{
    public static void main(String[] args)
    {
        Integer a = 1000, b = 1000;
        System.o         


        
相关标签:
12条回答
  • 2020-11-22 00:36

    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.

    1. This is applicable for Integer values in range between –127 to +127 (Max Integer value).

    2. 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

    0 讨论(0)
  • 2020-11-22 00:37

    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.

    public class Scratch
    {
        public static void main(String[] args)
        {
            Integer a = 1000, b = 1000;
            System.out.println(a.equals(b));
    
            Integer c = 100, d = 100;
            System.out.println(c.equals(d));
        }
    }
    

    returns:

    true
    true
    
    0 讨论(0)
  • 2020-11-22 00:38

    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; to Integer 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 of Integer.valueOf() method we can clearly see the method caches integer objects in the range -128 to 127 (inclusive).

    /**
     * Returns an {@code Integer} instance representing the specified
     * {@code int} value.  If a new {@code Integer} instance is not
     * required, this method should generally be used in preference to
     * the constructor {@link #Integer(int)}, as this method is likely
     * to yield significantly better space and time performance by
     * caching frequently requested values.
     *
     * This method will always cache values in the range -128 to 127,
     * inclusive, and may cache other values outside of this range.
     *
     * @param  i an {@code int} value.
     * @return an {@code Integer} instance representing {@code i}.
     * @since  1.5
     */
    public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }
    

    So instead of creating and returning new integer objects, Integer.valueOf() the method returns Integer objects from the internal IntegerCache 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 for Byte, Short, Long, Character respectively.

    You can read more on my article Java Integer Cache - Why Integer.valueOf(127) == Integer.valueOf(127) Is True.

    0 讨论(0)
  • 2020-11-22 00:38

    If we check the source code of the Integer class, we can find the source of the valueOf method just like this:

    public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
            return IntegerCache.cache[i + (-IntegerCache.low)];
        return new Integer(i);
    }
    

    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 class IntegerCache that takes care of the Integer cache array, which is a private static inner class of the Integer class.

    There is another interesting example that may help to understand this weird situation:

    public static void main(String[] args) throws ReflectiveOperationException {
        Class cache = Integer.class.getDeclaredClasses()[0];
        Field myCache = cache.getDeclaredField("cache");
        myCache.setAccessible(true);
    
        Integer[] newCache = (Integer[]) myCache.get(cache);
        newCache[132] = newCache[133];
    
        Integer a = 2;
        Integer b = a + a;
        System.out.printf("%d + %d = %d", a, a, b); // The output is: 2 + 2 = 5
    }
    
    0 讨论(0)
  • 2020-11-22 00:42

    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.

    0 讨论(0)
  • 2020-11-22 00:46

    The true line is actually guaranteed by the language specification. From section 5.1.7:

    If the value p being boxed is true, false, a byte, a char in the range \u0000 to \u007f, or an int or short number between -128 and 127, then let r1 and r2 be the results of any two boxing conversions of p. It is always the case that r1 == r2.

    The discussion goes on, suggesting that although your second line of output is guaranteed, the first isn't (see the last paragraph quoted below):

    Ideally, boxing a given primitive value p, would always yield an identical reference. In practice, this may not be feasible using existing implementation techniques. The rules above are a pragmatic compromise. The final clause above requires that certain common values always be boxed into indistinguishable objects. The implementation may cache these, lazily or eagerly.

    For other values, this formulation disallows any assumptions about the identity of the boxed values on the programmer's part. This would allow (but not require) sharing of some or all of these references.

    This ensures that in most common cases, the behavior will be the desired one, without imposing an undue performance penalty, especially on small devices. Less memory-limited implementations might, for example, cache all characters and shorts, as well as integers and longs in the range of -32K - +32K.

    0 讨论(0)
提交回复
热议问题