When the Java compiler autoboxes a primitive to the wrapper class, what code does it generate behind the scenes? I imagine it calls:
- The valueOf() method on the wrapper
- The wrapper's constructor
- Some other magic?
|
When the Java compiler autoboxes a primitive to the wrapper class, what code does it generate behind the scenes? I imagine it calls:
|
|||
|
|
|
You can use the
To compile and disassemble:
The output is:
Thus, as you can see, autoboxing invokes the static method |
|||||||||
|
|
I came up with a unit test that proves that Integer.valueOf() is called instead of the wrapper's constructor.
|
|||
|
|
|
If you look up the API doc for Integer#valueOf(int), you'll see it was added in JDK 1.5. All the wrapper types (that didn't already have them) had similar methods added to support autoboxing. For certain types there is an additional requirement, as described in the JLS:
It's interesting to note that I also just discovered that in my copy of The Java Programming Language, it says |
|||
|
|
|
I'd recommend getting something like jad and decompiling code a lot. You can learn quite a bit about what java's actually doing. |
|||
|
|