autoboxing : Java Glossary

autoboxing
Java version 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 Java version 1.5 or later, both are automatic.

In code prior to Java version 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 Java version 1.5 or later, 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 Java version 1.5 or later autoboxing features and the JDK (Java Development Kit)

Old Style Manual Boxing Example

In this case we use a String to look up a number in a HashMap. We use the Java version 1.1 or later manual boxing and the old style for loop.

Learning More

Oracle’s Technote Guide on autoboxing : available:


CMP homejump to top

available on the web at:

http://mindprod.com/jgloss/autoboxing.html
  

optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\autoboxing.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, especially when sending an ad-hominem attack, a rant composed mainly of obscenities or a death threat, please quote the offending passage and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. I can’t very well fix erroneous or ambiguous text if I can’t find it.
Blog
IP:[65.110.21.43]
Your face IP:[54.242.233.11]
You are visitor number 24,699.