Name: Anonymous 2010-05-17 19:44
Ever tried running this on your ENTERPRISE VIRTUAL MACHINE?
Guess what's the output, run it and report back.
Integer a = 1000;
Integer b = 1000;
System.out.println("a == b (1000 == 1000): " + (a == b));
Integer aa = 100;
Integer bb = 100;
System.out.println("aa == bb (100 == 100): " + (aa == bb));Guess what's the output, run it and report back.