| Author |
Why a primitive variable can point to wrapper object?
|
Mark Moge
Ranch Hand
Joined: Mar 14, 2009
Posts: 96
|
|
Can someone explain me why the primitive variable can point to wrapper object?
for example:
|
SCJP6 | http://programmerutilities.blogspot.com/
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56218
|
|
It can't. And in your example, it's not.
Java auto-boxing is extracting the value, 45, and assigning it to the int. There is no reference to the Integer instance.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Mark Moge
Ranch Hand
Joined: Mar 14, 2009
Posts: 96
|
|
Autoboxing and wrapper classe was added to Java 1.5. So now I can see how it works Thanks for replay.
|
 |
 |
|
|
subject: Why a primitive variable can point to wrapper object?
|
|
|