Java short: short is 16 bit signed type ranges from –32,768 to 32,767. : Short « Data Type « Java Tutorial






public class Main {

  public static void main(String[] args) {
    short s1 = 50;
    short s2 = 42;
    System.out.println("Value of short variable b1 is :" + s1);
    System.out.println("Value of short variable b1 is :" + s2);
  }
}
/*
Value of short variable b1 is :50
Value of short variable b1 is :42
*/








2.5.Short
2.5.1.Java short: short is 16 bit signed type ranges from –32,768 to 32,767.
2.5.2.Using short data type
2.5.3.Min and Max values of datatype short
2.5.4.Compare Two Java short Arrays
2.5.5.Cast back to short
2.5.6.Cast result of plus opertion to byte
2.5.7.Convert Java String to Short
2.5.8.Use toString method of Short class to convert Short into String.
2.5.9.Use Short constructor to convert short primitive type to Short object
2.5.10.Convert String to short primitive
2.5.11.Convert Short to numeric primitive data types
2.5.12.Java Sort short Array
2.5.13.Computation with Shorter Integer Types