Integer floatValue() Method in Java
The java.lang.Integer.floatValue() method of Integer class of java.lang package is used to convert the value of the given Integer to a float type after a widening primitive conversion.
Syntax :
public float floatValue()
Parameters: The method does not accepts any parameter.
Return Value: The method returns the numeric value represented by this object after converting it to type float.
Below programs illustrate the java.lang.Integer.floatValue() method:
Program 1:
// Java program to demonstrate working // of java.lang.Integer.floatValue() method import java.lang.Integer; class Gfg { // Driver code public static void main(String args[]) { Integer a = new Integer(28); // Convert Integer number to float value float b = a.floatValue(); System.out.println(b); } } |
28.0
Program 2:
// Java program to demonstrate working // of java.lang.Integer.floatValue() method import java.lang.Integer; class Gfg { // Driver code public static void main(String args[]) { Integer a = new Integer(20); // Convert Integer number to float value float b = a.floatValue(); System.out.println(b); } } |
20.0
Recommended Posts:
- Short floatValue() method in Java with Example
- BigInteger floatValue() Method in Java
- DoubleAccumulator floatValue() method in Java with Examples
- Number.floatValue() method in java with examples
- Byte floatValue() method in Java with examples
- BigDecimal floatValue() Method in Java with Examples
- DoubleAdder floatValue() method in Java with Examples
- AtomicLong floatValue() method in Java with examples
- LongAccumulator floatValue() method in Java with Examples
- LongAdder floatValue() method in Java with Examples
- AtomicInteger floatValue() method in Java with examples
- Float floatValue() in Java with examples
- Double floatValue() in Java with Examples
- Integer sum() Method in Java
- Java Integer compare() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



