Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Autoboxing Unboxing Operator (!=) and (==) difference [duplicate]

public class T1 {    

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        Integer i1 = 1000;
        Integer i2 = 1000;
        if(i1 != i2) System.out.println("different objects");
        if(i1.equals(i2)) System.out.println("meaningfully equal");    

    }

}

O/P for this is:

different objects
meaningfully equal

Where as

public class T2 {    

    public static void main(String[] args) {            

        Integer i3 = 10;
        Integer i4 = 10;
        if(i3!=i4)System.out.println("Crap dude!!");
        if(i3 == i4) System.out.println("same object");

        if(i3.equals(i4)) System.out.println("meaningfully equal");    
    }

}

Produces Following O/P:

same object
meaningfully equal

I didn't understand why in class T2 if(i3!=i4) didn't get triggered I'm refering SCJP 1.6 but not able to understand.
Please help me.

like image 757
Saurabh Sharma Avatar asked Dec 26 '13 12:12

Saurabh Sharma


3 Answers

This is because 10 is in between the range [-128, 127]. For this range == works fine since the JVM caches the values and the comparison will be made on the same object.

Every time an Integer (object) is created with value in that range, the same object will be returned instead of creating the new object.

See the JLS for further information.

like image 79
Maroun Avatar answered Nov 15 '22 20:11

Maroun


Small integers get interned, meaning that there's only one instance of Integer for the given value.

This doesn't happen for large integers, hence the difference in behaviour between your two tests.

like image 32
NPE Avatar answered Nov 15 '22 20:11

NPE


There is Integer pool for the numbers from -128 to 127 in java. JLS says

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

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 char and short values, as well as int and long values in the range of -32K to +32K.

like image 40
Abimaran Kugathasan Avatar answered Nov 15 '22 18:11

Abimaran Kugathasan