Converting from int to Integer is called boxing and converting back from Integer to int is called unboxing. In JDK 1.5+, both are automatic.
In code prior to JDK 1.1, you had to do a lot of manual tedious converting back and forth from primitive int to Integer Object, and similarly for byte/ Byte, char/Character, short/ Short, long/ Long, float/Float and double/ Double.
In JDK 1.5+, these conversions are inserted for you automatically. You still pay the time penalty for the conversions, it is just you don’t have to spell them out longhand.
Autoboxing will interconvert Integer and int transparently, but not Integer[] and int[]. That you will have to do yourself element by element.
| Manual Vs AutoBoxing | Learning More |
| AutoBoxing Example | Links |
| Manual Boxing Example |
![]() |
and suggestions to improve this page to Roedy Green : | ||
| Canadian Mind Products | |||
| mindprod.com IP:[65.110.21.43] | |||
| Your face IP:[38.103.63.16] | ![]() | ||
| You are visitor number 8,008. | |||
| You can get a fresh copy of this page from: | or possibly from your local J: drive (Java virtual drive/Mindprod website mirror) | ||
| http://mindprod.com/jgloss/autoboxing.html | J:\mindprod\jgloss\autoboxing.html | ||