Friday, March 13, 2026
HomeLanguagesJavaNumber.intValue() method in java with examples

Number.intValue() method in java with examples

The java.lang.Number.intValue() is an inbuilt method in java that returns the value of the specified number as an int. This may involve rounding or truncation.

Syntax:

public abstract int intValue()

Parameters: This method does not accepts any parameter.

Return value: This method returns the numeric value represented by this object after conversion to type int.

Below programs illustrate the Number.intValue() method:

Program 1:




// java program to demonstrate
// Number.intValue() method
public class gfg {
  
    public static void main(String[] args)
    {
  
        // get a number as float
        Float x = new Float(456f);
        // print the value as int
        System.out.println(x.intValue());
  
        // get a number as double
        Double y = new Double(20);
        // print the value as int
        System.out.println(y.intValue());
    }
}


Output:

456
20

Program 2:




// java program to demonstrate
// Number.intValue() method
  
public class gfg {
  
    public static void main(String[] args)
    {
  
        // get a number as float
        Float x = new Float(56f);
        // print the value as int
        System.out.println(x.intValue());
  
        // get a number as double
        Double y = new Double(76.2);
        // print the value as int
        System.out.println(y.intValue());
    }
}


Output:

56
76
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS