Friday, February 13, 2026
HomeLanguagesJavaJava Math addExact(long x, long y) method

Java Math addExact(long x, long y) method

The java.lang.Math.addExact() is a built-in math function in java which returns the sum of its arguments. It throws an exception if the result overflows a long.As addExact(long x, long y) is static, so object creation is not required. 

Syntax :

public static long addExact(long x, long y)
Parameter :
 a : the first value
 b : the second value
Return :
This method returns  the sum of its arguments.
Exception :
It throws ArithmeticException - if the result overflows a long

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

java




// Java program to demonstrate working
// of java.lang.Math.addExact() method
import java.lang.Math;
 
class Gfg1 {
 
    // driver code
    public static void main(String args[])
    {
        long x = 9999999999l;
        long y = 1l;
 
        System.out.println(Math.addExact(x, y));
    }
}


Output:

10000000000

java




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


Output:

Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: long overflow
    at java.lang.Math.addExact(Math.java:809)
    at Gfg2.main(File.java:13)
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32499 POSTS0 COMMENTS
Milvus
128 POSTS0 COMMENTS
Nango Kala
6878 POSTS0 COMMENTS
Nicole Veronica
11999 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12092 POSTS0 COMMENTS
Shaida Kate Naidoo
7010 POSTS0 COMMENTS
Ted Musemwa
7248 POSTS0 COMMENTS
Thapelo Manthata
6961 POSTS0 COMMENTS
Umr Jansen
6953 POSTS0 COMMENTS