Java Math - subtractExact() Method
The java.lang.Math.subtractExact() method returns difference of its arguments. It throws an exception, if the result overflows an int.
Syntax
public static int subtractExact(int x, int y)
Parameters
x |
Specify the first value. |
y |
Specify the second value to subtract from first. |
Return Value
Returns difference of its arguments.
Exception
Throws ArithmeticException, if the result overflows an int.
Example:
In the example below, subtractExact() method is used to find difference of given numbers.
import java.lang.*; public class MyClass { public static void main(String[] args) { int x = 12; int y = 17; int p = 145; int q = 139; System.out.println(Math.subtractExact(x, y)); System.out.println(Math.subtractExact(p, q)); } }
The output of the above code will be:
-5 6
❮ Java.lang - Math