Integer intValue()
Java Integer intValue() Method
Last Updated : 17 Mar 2025
The intValue() method is an instance method of Integer class under java.lang package. This method returns the value of the specified number as an int. It is inherited from the Number Class.
Syntax:
Following is the declaration of intValue() method:
Parameter:
| DataType | Parameter | Description |
|---|---|---|
| NA | NA | This method does not accepts any parameter. |
Returns:
The intValue() method returns the numeric value represented by this object after conversion to type int.
Exceptions:
NA
Compatibility Version:
Java 1.2 and above
Example 1
Output:
Value of i is: 25
Example 2
Output:
Integer Value of X: 568 Integer Value of Y: 55
Example 3
Output:
Enter The Desired Integer Value: 2342 Integer Value is: 2342
Example 4
Output:
Value is = 13
Next TopicJava-integer-longvalue-method