Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The ourput of current program is "Strange". But the both the variables share the same reference why are second and thrid comparison not true.

Integer a;
Integer b;
a = new Integer(2);
b = a;
if(b == a) {
    System.out.println("Strange");
}
a++;
if(b == a) {
    System.out.println("Stranger");
}
a--;
if(b == a) {
    System.out.println("Strangest");
}

Output: Strange

share|improve this question
Unboxing is probably the answer. However, I have no real idea. – jjnguy Jun 21 '10 at 14:11
6  
+1 for demonstrating an unforgivable use of autoboxing. – Mark Peters Jun 21 '10 at 14:18

2 Answers

up vote 13 down vote accepted

That's the artifact of autoboxing and a fact that Integer is immutable in Java.

The a++ and a-- are translated to roughly this.

int intA = a.getInt( );
intA++;
a = Integer.valueOf( intA ); // this is a reference different from b
share|improve this answer
8  
Note that if you replace a = new Integer(2) with a = Integer.valueOf(2), "Strangest" will also be printed since it will use the integer cache for getting the instance. – Mark Peters Jun 21 '10 at 14:18
What do you mean by integer cache in your comment. can you elaborate ? – restrictedinfinity Jun 21 '10 at 14:35
1  
@restrictedinfinity. At least in Sun's Java, Byte, Short and Integer have a cache of 256 values ranging from -128 to 127 inclusive that are served by Type.valueOf( ) method. So in our case after a-- the int value is 2 and that would be the same that we have started with, so Integer.valueOf( 2 ) would have returned the same Integer object. Note, that Long type does not have a cache, therefore Long.valueOf always returns a new object. – Alexander Pogrebnyak Jun 21 '10 at 14:41
@Alexander: It can be safely assumed that this behaviour holds true for all JVM implementations since it is a part of the specification. – Sanjay T. Sharma Jan 24 '11 at 14:05
@Sanjay it is part of the specification, but it only guarantees to cache -128 to +127. However, implementations may cache more than this if they choose. This means if it chooses to cache more, an == comparison of, say valueOf(200) may prove to be true on some implementations but false on others. – corsiKa Apr 6 '11 at 0:49
show 1 more comment
  • Strage - it's obvious, the two variables point to the same object

  • not Stranger because of autoboxing. Integer is immutable, so each operation on it creates a new instance.

  • not Strangest, because of the previous point, and because you have used new Integer(..) which ignores the cache that is used for the byte range. If you use Integer.valueOf(2) initially, then the cached Integers will be used and Strangest will also be printed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.