Java Data Type Tutorial - 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");

    short s = floatObject.shortValue();
    System.out.println("short:"+s);
  }
}

The output: