Autoboxing seems to come down to the fact that I can write:
Integer i = 0;
instead of:
Integer i = new Integer(0);
So, the compiler can automatically convert a primitive to an Object.
Is that the idea? Why is this important?
|
Autoboxing seems to come down to the fact that I can write:
instead of:
So, the compiler can automatically convert a primitive to an Object. Is that the idea? Why is this important? |
|||
|
|
|
You kind of simplified it a little too much. Autoboxing also comes into play when using collections. As explained in sun's java docs:
|
||||
|
|
|
It exists so that you can write code like
For single integers you should by default use the type int, not Integer. Integer is mostly for use in collections. Beware that a Long is different from the same value as an Integer (using equals()), but as a long it is equal to an int (using ==). |
||||
|
|
|
BTW
is equivalent to
The distinction is that valueOf() does not create a new object for values between -128 and 127 (Apparently this will be tunable if Java 6u14) |
|||
|
|
|
The main advantage would be readability, syntactic sugar basically. Java is already very verbose, Sun is trying all sorts of ways to make the syntax shorter. |
|||
|
|
|
Adding to Lim's comment, primitives are stored on the stack, and primitive-wrappers, as objects, are stored on the heap... There are subtle implications due to this. |
|||
|
|
|
From what I remember from reading Joshua Bloch's Effective Java, you should consider the primitives over their boxed counterparts. Autoboxing without regard for its side effects can produce problems. |
|||||
|
|
That is the idea, yes. It's even more convenient to be able to assign an Integer to an int, though. One could argue that autoboxing addresses a symptom rather than a cause. The real source of confusion is that Java's type system is inconsistent: the need for both primitives and object references is artificial and awkward. Autoboxing mitigates that somewhat. |
|||||||||||
|
|
With my cynical hat on: to make-up for limitations on the original Java (I mean Oak here) spec. Not just the first time. |
|||||||||
|
|
Makes for more readable and neater code. Especially if you're doing operations (Since Java doesn't have operator overloading). |
|||
|
|