Automatic conversion of primitive types and their corresponding object wrapper classes (eg, int and Integer, double and Double, etc). Autoboxing is a new feature java 1.5 . It is a capability to convert or cast between object wrapper and it’s primitive type.it was necessary to wrap a primitive type to a Wrapper class before adding [...]
