VOOZH about

URL: https://www.geeksforgeeks.org/java/integer-floatvalue-method-in-java/

⇱ Integer floatValue() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Integer floatValue() Method in Java

Last Updated : 3 May, 2022

floatValue() method of Integer class present inside java.lang package is used to convert the value of the given Integer to a float type after a widening primitive conversion which in general is mostly applicable when we want to truncate or rounding-off the integer value. The package view is as follows:

--> java.lang Package
 --> Integer Class
 --> floatValue() Method     

Syntax:

public float floatValue()

Return Type: A numeric value represented by this object after converting it to type float.

Note: This method is workable when it is supported by java version 1.2 or onwards, so make sure to update java version if running on older(introductory) java versions.

Example 1:

Output:

👁 Image
 

Example 2:

Output:

👁 Image
 
Comment
Article Tags:
Article Tags: