Long.shortValue() has the following syntax.
public short shortValue()
In the following code shows how to use Long.shortValue() method.
public class Main { public static void main(String[] args) { Long longObject = new Long("1234567"); short s = longObject.shortValue(); System.out.println("short:"+s); } }
The output: