autoboxing : Java Glossary
home A words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
autoboxing
JDK 1.5 introduced a bit of syntactic sugar to save you writing conversions back and forth between Integer and int, Long and long, Double and double etc. If you leave out the conversion, the compiler will insert it for you. This provides the illusion that you can store primitive int, long, double etc. in Collections directly.

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

Manual Vs AutoBoxing

AutoBoxing Example

In this case we use a String to look up a number in a HashMap. We use the JDK 1.5+ autoboxing features and the JDK 1.5+ style for:each loop.

Old Style Manual Boxing Example

In this case we use a String to look up a number in a HashMap. We use the JDK 1.1+ manual boxing and the old style for loop. We don’t use generics type checking.

Learning More

Sun’s JDK Technote Guide on autoboxing : available:

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.18] The information on this page is for non-military use only.
You are visitor number 7,452. Military use includes use by defence contractors.
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