当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math subtractExact(int a , int b)用法及代码示例


java.lang.Math.subtractExact()是java中的内置数学函数,该函数返回参数的差值。不需要。

用法:

public static int subtractExact(int a, int b)
参数:
 a:the first value
 b:the second value to be subtracted from the first
返回:
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)


相关用法


注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Math subtractExact(int a , int b) method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。