Computation with Shorter Integer Types : Short « Data Type « Java Tutorial






public class MainClass {
  public static void main(String[] args) {
    short numA = 5;
    short numB = 10;
    short numC = 0;

    numC = (short) (numA + numB);
    
    System.out.println(numC);
  }
}
15








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