Java Short Keyword

Java Short Keyword


Short Keyword in Java
This data type can store numbers from -32768 to 32767. This can be used instead of int or other integer types when the inputting value is in 2-byte space or less.
Example-
short num =20;
System.out.println(num);