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