Java short Example
- /*
- Java short Example
- This Java Example shows how to declare and use Java primitive short variable
- inside a java class.
- */
- public class JavaShortExample {
- public static void main(String[] args) {
- /*
- * short is 16 bit signed type ranges from –32,768 to 32,767.
- *
- * Declare short varibale as below
- *
- * short <variable name> = <default value>;
- *
- * here assigning default value is optional.
- */
- 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);
- }
- }
- /*
- Output would be
- Value of short variable b1 is :50
- Value of short variable b1 is :42
- */



