📜  Java数学 subExact(int a , int b) 方法

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

Java数学 subExact(int a , int b) 方法

Java .lang.Math.subtractExact()是Java中的一个内置数学函数,它返回
参数。如果结果溢出 int,则会引发异常。由于 subtractExact(int a, int b) 是静态的,所以
不需要创建对象。

句法 :

public static int subtractExact(int a, int b)
Parameter :
 a : the first value
 b : the second value to be subtracted from the first
Return :
This method returns the difference of the arguments .
Exception :
It throws ArithmeticException - if the result overflows an int

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

// Java program to demonstrate working
// of java.lang.Math.subtractExact() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
        int a = 300;
        int b = 200;
  
        System.out.println(Math.subtractExact(a, b));
    }
}

输出:

100
// Java program to demonstrate working
// of java.lang.Math.subtractExact() method
import java.lang.Math;
  
class Gfg2 {
  
    // driver code
    public static void main(String args[])
    {
        int x = Integer.MIN_VALUE;
        int y = 10;
  
        System.out.println(Math.subtractExact(x, y));
    }
}

输出:

Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: integer overflow
    at java.lang.Math.subtractExact(Math.java:829)
    at Gfg2.main(File.java:13)