This strange behavior:
Integer x;
x = 12;
Is due to java autoboxing.
Some history:
Prior to Java 1.5 it was not allowed. You had primitives ( int, char, byte, boolean, float, double,long ) and the rest in the Java world were classes ( including the corresponging wrappers: Integer, Character, Byte, Booelan, Float, Double, Long ) .
The core data structures of Java worked with Objects, so if you needed to store numbers into a list you had to "wrap" your value ( the wrappers are just regular classes that hold a primitive type )
For instance this may be my own int wrapper:
public class Entero { // integer in spanish... :P
private final int wrappedInt;
public Entero( int i ) {
this.wrappedInt = i;
}
public int getEntero() {
return wrappedInt;
}
}
Nothing fancy, that's in general terms how the "wrapper" classes are implemented ( of course there are a lot of utility methods there )
So, again, if you wanted to use it in a List ( which only holds Objects ) you'll have to:
List list = // get the list from somewhere....
list.add( new Integer( 1024 ) ); // wrap it
....
// use the list and at some point iterate it:
Iterator iterator = list.iterator();
while( iterator.hasNext() ) {
Integer e = ( Integer ) iterator.next(); // unwrap it
i = e.intValue();
}
Calling
list.add( 1024 )
Directly wasn't possible, because 1024 is an int literal, not an object.
Tons of code were written like this, by years.
Since Java 1.5 added autoboxing that basically is syntactic sugar, now "new Integer( i )/ integer.intValue()" are injected under the hood by the compiler and the code became:
list.add( 1024 ); // wrapped in the compiled code in the the .class file that is.
....
Iterator i = list.iterator();
while( i.hasNext() ) {
int i = ( Integer ) i.next(); // unwrapped for you by the compiler under the hood
}
Removing the wrapping process from the source code.
Additionally, with generics, you saved the casting also:
List<Integer> list = .... // <- you still have to say the list is of "Integers" not "int"
....
Iterator<Integer> i = list.iterator(); // The iterator has to use the "<Integer>" generic mark
while( i.hasNext() ){
int x = i.next(); // but you can get the value directly.
}
Basically generics is a mark to say "check what gets used is of this type and don't bother me with casting anymore", but generics are another topic.