Java.lang Package Classes

Java Byte - floatValue() Method



The java.lang.Byte.floatValue() method returns the value of this Byte as a float after a widening primitive conversion.

Syntax

public float floatValue()

Parameters

No parameter is required.

Return Value

Returns the numeric value represented by this object after conversion to type float.

Exception

NA.

Example:

In the example below, the java.lang.Byte.floatValue() method returns a Byte object after conversion to type float.

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //creating Byte objects
    Byte val1 = 25;
    Byte val2 = -25;

    //printing floatValue of the Byte objects
    System.out.println("floatValue of the val1 is: " + val1.floatValue()); 
    System.out.println("floatValue of the val2 is: " + val2.floatValue());   
  }
}

The output of the above code will be:

floatValue of the val1 is: 25.0
floatValue of the val2 is: -25.0

❮ Java.lang - Byte