I am confused as to why Integer and int can be used interchangeably in Java even though one is a primitive type and the other is an object?
For example:
Integer b = 42;
int a = b;
Or
int d = 12;
Integer c = d;
|
I am confused as to why Integer and int can be used interchangeably in Java even though one is a primitive type and the other is an object? For example:
Or
|
||||
|
|
|
The first few sentences of the posted article describe it pretty well:
That is basically it in a nutshell. It allows you take advantage of the Collections Framework for primatives without having to do the work yourself. The primary disadvantage is that it confuses new programmers, and can lead to messy/confusing code if it's not understood and used correctly. |
|||
|
|
|
Check this article and this article |
|||
|
|
|
Because of autoboxing and autounboxing http://download.oracle.com/javase/1.5.0/docs/guide/language/autoboxing.html |
|||
|
|
|
It's called AutoBoxing. That will explain exactly what it is. |
|||
|
|
|
Using an
or
That's fairly verbose, which is why autoboxing was introduced. It's a bit of compiler magic to make life easier for the coder. Technically, As a side note, there is one case where autoboxing (specifically unboxing) fails. If your code tries to autounbox a null value, you will get a
Just something to be aware of... |
|||
|
|
|
The java language specification states that the java virtual machine must perform automatic boxing/unboxing for integers and a few other types. |
|||
|
|
|
In addition to other answers, because Integer is a wrapper class, that lets you box and unbox an |
|||
|
|