Home »
Java programming language
Java - Float Class intValue() Method
Float class intValue() method: Here, we are going to learn about the intValue() method of Float class with its syntax and example.
By Preeti Jain Last updated : March 21, 2024
Float class intValue() method
- intValue() method is available in java.lang package.
- intValue() method is used to return the value denoted by this Float object converted to type int (by casting).
- intValue() method is a non-static method, it is accessible with class object only and if we try to access the method with the class name then we will get an error.
- intValue() method does not throw an exception at the time of conversion from float to int.
Syntax
public int intValue();
Parameters
- It does not accept any parameter.
Return Value
The return type of this method is int, it returns a converted (from type float to int) value represented by this Float object.
Example
// Java program to demonstrate the example
// of intValue() method of Float class
public class IntValueOfFloatClass {
public static void main(String[] args) {
// Variables initialization
float value1 = 10.20f;
float value2 = 20.20f;
// It returns float value denoted by this Float f1 object
// and converted to a int by calling f1.intValue()
Float f1 = new Float(value1);
// Display f1 result
System.out.println("f1.intValue(): " + f1.intValue());
// It returns float value denoted by this float f2 object
// and converted to a int by calling f2.intValue()
Float f2 = new Float(value2);
// Display f2 result
System.out.println("f2.intValue(): " + f2.intValue());
}
}
Output
f1.intValue(): 10
f2.intValue(): 20