The java.lang.Short.floatValue() method of Short class is a built in method in Java which is used to return the value of the Short object as a float.
Syntax:
public float floatValue()
Return type: It return the value of ShortObject as float.
Below is the implementation of floatValue() method in Java:
Example 1: