當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。