autoboxing
autoboxing addresses the code needed to get around the difference between primitives and the Wrapper classes used to store primitives. In the past it was necessary to call a method of the wrapper class to extract the primitive value. So the following code is typical.
With
Java 1.5 it is possible to write
Note how the instance of the integer class is assigned directly to the int primitive without any need for conversion. Note that if you are using mock exams from earlier versions of Java you may find that the behaviour of JDK1.5 means the answer is �incorrect�, but that it is simply because of the effect of autoboxing.
.