Java Float.shortValue()
Syntax
Float.shortValue() has the following syntax.
public short shortValue()
Example
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");
/*from ww w .j a v a2s . co m*/
short s = floatObject.shortValue();
System.out.println("short:"+s);
}
}
The output: