Short Wrapper class in Java

Java Programming Language / Decision Making and Looping in java

1352

Program:

public class WrapperClassShort {
public static void main(String args[]){

       Short a=new Short("4");
       Short b=2;
       System.out.println(a);
       System.out.println(b);
 }
}

/*
Wrapper class in java provides the mechanism to convert primitive
into object and object into primitive.

Since J2SE 5.0, autoboxing and unboxing feature converts primitive
into object and object into primitive automatically. The automatic
conversion of primitive into object is known as autoboxing
and vice-versa unboxing.

*/

Output:

4
2
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.