Min and Max values of datatype short : Short « Data Type « Java Tutorial






public class Main {
    public static void main(String[] args) {
        System.out.println(Short.MIN_VALUE);
        System.out.println(Short.MAX_VALUE);
    }
}
/*
-32768
32767
*/








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