Use Short constructor to convert short primitive type to Short object : short « Data Type « Java






Use Short constructor to convert short primitive type to Short object

   

public class Main {
  public static void main(String[] args) {
    short s = 10;
    Short sObj = new Short(s);
    System.out.println(sObj);
  }
}

   
    
    
  








Related examples in the same category

1.Java Short Example
2.Java short: short is 16 bit signed type ranges from –32,768 to 32,767.
3.Convert Java String to Short
4.Short class creates primitives that wrap themselves around data items of the short data type
5.Use toString method of Short class to convert Short into String.
6.short value
7.Convert Short to numeric primitive data types
8.Convert String to short primitive
9.Compare Two Java short Arrays
10.Java Sort short Array
11.Cast back to short
12.Cast result of plus operation to byte
13.Shorts Vs IntsShorts Vs Ints
14.Gets the maximum of three short values.
15.Gets the minimum of three short values.
16.Convert int and short to bytes