Note: (Restricted functionality due to obvious reasons!)

For Mobile-Ease ⇓

Minimal Code ( Raw-View ) :
class AutoBoxing { public static void main(String z[]) { // Auto-Boxing : int a=70; Integer b = new Integer(a); System.out.println("Autoboxed a->b = "+b); // Auto-Unboxing : Float x = new Float(23.4f); float f=x; System.out.println("Auto-Unboxed x->f ="+f); } }