Saturday, November 22, 2025
HomeLanguagesJavaJava Math toIntExact(long value) Method

Java Math toIntExact(long value) Method

The java.lang.Math.toIntExact() is a built-in math function in java which returns the value of the long argument.It throws an exception if the result overflows an int.As toIntExact(long value) is static, so object creation is not
required.

Syntax :

public static int toIntExact(long value)
Parameter :
value : the long value
Return :
This method returns the input argument as an int(integer) .
Exception :
It throws ArithmeticException - if the result overflows an int

Example :To show working of java.lang.Math.toIntExact() method.




// Java program to demonstrate working
// of java.lang.Math.toIntExact() method
import java.lang.Math;
  
class Gfg1 {
    // driver code
    public static void main(String args[])
    {
        long a = 499;
        System.out.println(Math.toIntExact(a));
    }
}


Output:

499




// Java program to demonstrate working
// of java.lang.Math.toIntExact() method
import java.lang.Math;
  
class Gfg2 {
  
    // driver code
    public static void main(String args[])
    {
        long x = Long.MAX_VALUE;
  
        System.out.println(Math.toIntExact(x));
    }
}


Output:

Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: integer overflow
    at java.lang.Math.toIntExact(Math.java:1011)
    at Gfg2.main(File.java:12)
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS