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


Java IntMath.checkedAdd(int a, int b)用法及代碼示例


CheckedAdd(int a,int b)是Guava IntMath類的方法,該方法接受兩個參數a和b並返回它們的總和。

用法:

public static int checkedAdd(int a, int b)

參數:該方法接受兩個int值a和b並計算它們的和。


返回值:該方法返回傳遞給它的int值的總和,前提是它不會溢出。

異常:如果總和即(a-b)在有符號的int算術中溢出,則checkedAdd(int a,int b)的方法將引發ArithmeticException。

以下示例說明了上述方法的實現:

範例1:

// Java code to show implementation of 
// checkedAdd(int a, int b) method 
// of Guava's IntMath class 
  
import java.math.RoundingMode; 
import com.google.common.math.IntMath; 
  
class GFG { 
  
    // Driver code 
    public static void main(String args[]) 
    { 
        int a1 = 25; 
        int b1 = 36; 
  
        // Using checkedAdd(int a, int b) 
        // method of Guava's IntMath class 
        int ans1 = IntMath.checkedAdd(a1, b1); 
  
        System.out.println("Sum of " + a1 + " and "
                           + b1 + " is:" + ans1); 
  
        int a2 = 150; 
        int b2 = 667; 
  
        // Using checkedAdd(int a, int b) 
        // method of Guava's IntMath class 
        int ans2 = IntMath.checkedAdd(a2, b2); 
  
        System.out.println("Sum of " + a2 + " and "
                           + b2 + " is:" + ans2); 
    } 
}
輸出:
Sum of 25 and 36 is:61
Sum of 150 and 667 is:817

範例2:

// Java code to show implementation of 
// checkedAdd(int a, int b) method 
// of Guava's IntMath class 
  
import java.math.RoundingMode; 
import com.google.common.math.IntMath; 
  
class GFG { 
  
    static int findDiff(int a, int b) 
    { 
        try { 
  
            // Using checkedAdd(int a, int b) method 
            // of Guava's IntMath class 
            // This should throw "ArithmeticException" 
            // as the sum overflows in signed 
            // int arithmetic 
            int ans = IntMath.checkedAdd(a, b); 
  
            // Return the answer 
            return ans; 
        } 
        catch (Exception e) { 
            System.out.println(e); 
            return -1; 
        } 
    } 
  
    // Driver code 
    public static void main(String args[]) 
    { 
        int a = Integer.MIN_VALUE; 
        int b = 452; 
  
        try { 
  
            // Function calling 
            findDiff(a, b); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:

參考:
https://google.github.io/guava/releases/20.0/api/docs/com/google/common/math/IntMath.html#checkedAdd-int-int-



相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | IntMath.checkedAdd(int a, int b) method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。