Java StrictMath subtractExact()实例

Java StrictMath subtractExact()实例

subtractExact(int num1, int num2)

subtractExact(int num1, int num2) 是java中StrictMath类的一个内置方法,用于获取给定参数num1和num2的差。如果结果溢出int,它会抛出一个异常。

由于subtractExact(int num1, int num2)是静态的,所以创建对象不是强制性的。

语法

public static int subtractExact(int num1, int num2)

参数: 该方法接受两个参数。

  • num1 :第一个整数值和
  • num2 :从第一个整数中减去的第二个整数值。

返回值: 该方法返回给定参数num1和num2的 差值

异常: 如果结果溢出一个int,则抛出 ArithmeticException。

示例

输入: num1 = 750, num2 = 50
输出: 700

输入: num1 = 361, num2 = 929
输出: -568

下面的程序说明了java.lang.StrictMath.subtractExact()方法:

程序1 :

// Java program to illustrate the
// java.lang.StrictMath.subtractExact()
 
import java.lang.StrictMath;
 
class Geeks {
 
    // driver code
    public static void main(String args[])
    {
 
        // Get the int values
        // for which the difference is required
        int num1 = 76761;
        int num2 = 99;
        int num3 = 786616;
 
        // Get difference between
        // num1 and num2
        System.out.println("Difference of " + num1
                           + " and " + num2 + " = "
                           + StrictMath
                                 .subtractExact(num1, num2));
 
        // Get difference between
        // num1 and num3
        System.out.println("Difference of " + num1
                           + " and " + num3 + " = "
                           + StrictMath
                                 .subtractExact(num1, num3));
    }
}

输出

Difference of 76761 and 99 = 76662
Difference of 76761 and 786616 = -709855

subtractExact(long num1, long num2)

subtractExact(long num1, long num2) 是java中StrictMath类的一个内置方法,用于获取给定参数 num1 和 num2 的差。如果结果溢出长 ,则抛出一个异常。由于 subtractExact(long num1, long num2) 是静态的,所以创建对象不是强制性的。
语法

public static long subtractExact(long num1, long num2)

参数: 该方法接受两个参数。

  • num1 : 第一个长值和
  • num2 :从第一个长值中减去的第二个长值。

返回值: 该方法返回给定参数 num1和num2的 差值

异常: 如果结果溢出一个long值 ,则抛出 ArithmeticException

示例
输入: num1 = 750, num2 = 50
输出: 700

输入: num1 = 361, num2 = 929
输出: -568

下面的程序说明了java.lang.StrictMath.subtractExact()方法:
程序1 :

// Java program to illustrate the
// java.lang.StrictMath.subtractExact()
 
import java.lang.StrictMath;
 
class Geeks {
 
    // driver code
    public static void main(String args[])
    {
 
        // Get the long values
        // for which the difference is required
        long num1 = -76342561;
        long num2 = 949;
        long num3 = 78326616;
 
        // Get difference between
        // num1 and num2
        System.out.println("Difference of " + num1
                           + " and " + num2 + " = "
                           + StrictMath
                                 .subtractExact(num1, num2));
 
        // Get difference between
        // num1 and num3
        System.out.println("Difference of " + num1
                           + " and " + num3 + " = "
                           + StrictMath
                                 .subtractExact(num1, num3));
    }
}

输出

Difference of -76342561 and 949 = -76343510
Difference of -76342561 and 78326616 = -154669177

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程