Number Class in java, Boxing and un-boxing

Java Programming Language / OOPs concept more

1195

Program:

 public class NumberClass {

   public static void main(String args[]) {
      Integer n = 10; // boxes int to an Integer object
      n =  n + 10;   // unboxes the Integer to a int
      System.out.println(n);
   }
}

Output:

20
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.