Open In App

Java Guava | Longs.checkedSubtract(long a, long b) method with Examples

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The checkedSubtract(long a, long b) is a method of Guava's LongMath Class which accepts two parameters a and b, and returns their difference. Syntax:
public static long checkedSubtract(long a, long b)
Parameters: The method accepts two long values a and b and computes their difference. Return Value: The method returns the difference of long values passed to it, provided it does not overflow. Exceptions: The method checkedSubtract(long a, long b) throws ArithmeticException if the difference i.e, (a - b) overflows in signed long arithmetic. Below examples illustrate the implementation of above method: Example 1: Java
// Java code to show implementation of
// checkedSubtract(long a, long b) method
// of Guava's LongMath class

import java.math.RoundingMode;
import com.google.common.math.LongMath;

class GFG {

    // Driver code
    public static void main(String args[])
    {
        long a1 = 25;
        long b1 = 36;

        // Using checkedSubtract(long a, long b)
        // method of Guava's LongMath class
        long ans1 = LongMath.checkedSubtract(a1, b1);

        System.out.println("Difference of " + a1 + " and "
                           + b1 + " is: " + ans1);

        long a2 = 150;
        long b2 = 667;

        // Using checkedSubtract(long a, long b)
        // method of Guava's LongMath class
        long ans2 = LongMath.checkedSubtract(a2, b2);

        System.out.println("Difference of " + a2 + " and "
                           + b2 + " is: " + ans2);
    }
}
Output:
Difference of 25 and 36 is: -11
Difference of 150 and 667 is: -517
Example 2: Java
// Java code to show implementation of
// checkedSubtract(long a, long b) method
// of Guava's LongMath class

import java.math.RoundingMode;
import com.google.common.math.LongMath;

class GFG {

    static long findDiff(long a, long b)
    {
        try {

            // Using checkedSubtract(long a, long b) method
            // of Guava's LongMath class
            // This should throw "ArithmeticException"
            // as the difference overflows in signed
            // long arithmetic
            long ans = LongMath.checkedSubtract(a, b);

            // Return the answer
            return ans;
        }
        catch (Exception e) {
            System.out.println(e);
            return -1;
        }
    }

    // Driver code
    public static void main(String args[])
    {
        long a = Long.MIN_VALUE;
        long b = 452;

        try {

            // Function calling
            findDiff(a, b);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Output:
java.lang.ArithmeticException: overflow
Reference: https://guava.dev/releases/20.0/api/docs/com/google/common/math/LongMath.html#checkedSubtract-long-long-

Practice Tags :

Similar Reads