📜  Java Math addExact(long x, long y) 方法

📅  最后修改于: 2022-05-13 01:54:35.073000             🧑  作者: Mango

Java Math addExact(long x, long y) 方法

Java .lang.Math.addExact()是Java中的内置数学函数,它返回其参数的总和。
如果结果溢出 long 则抛出异常。由于 addExact(long x, long y) 是static ,所以对象创建
不需要。

句法 :

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

示例:显示Java.lang.Math.addExact()方法的工作。

// 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));
    }
}

输出:

10000000000
// 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));
    }
}

输出:

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)