当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java StrictMath multiplyExact()用法及代码示例


  1. multipleExact(int num1,int num2)是Java中StrictMath类的内置函数,用于获取给定参数的乘积。当结果溢出一个整数(即Integer.MAX_VALUE)时,它将引发异常。由于此函数是静态的,因此无需创建对象。
    用法:
    public static int multiplyExact(int num1, int num2)

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

    • num1: 这是代表一个参数的整数类型
    • num2: 这是代表另一个参数的整数类型

    返回值:该方法返回num1和num2的乘积。
    异常:它抛出ArithmeticException当结果溢出时为int。
    例子:


    Input: 
    num1 = 8
    nm2 = 7
    
    Output: 56
    

    下面的程序演示了Java.lang.StrictMath.multiplyExact()方法。

    // Java praogram to illustrate the 
    // Java.lang.StrictMath.multiplyExact() 
    import java.lang.*; 
      
    class Geeks { 
      
        public static void main(String args[]) 
        { 
            int num1 = 10, num2 = 5, num3 = -17, num4 = -2; 
            System.out.println("Product of " + num1 + " and "
            + num2 + " is " + StrictMath.multiplyExact(num1, num2)); 
      
            System.out.println("Product of " + num3 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num3, num4)); 
      
            System.out.println("Product of " + num2 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num2, num4)); 
        } 
    }
    输出:
    Product of 10 and 5 is 50
    Product of -17 and -2 is 34
    Product of 5 and -2 is -10
    
  2. multipleExact(long num1,int num2)是Java中StrictMath类的内置函数,用于获取给定参数的乘积。当结果长时间溢出时,它将引发异常。由于此函数是静态的,因此无需创建对象。
    用法:
    public static long multiplyExact(long num1, int num2)

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

    • num1: 这是代表一个参数的长类型
    • num2: 这是int类型,表示另一个参数

    返回值:该方法返回num1和num2的乘积。
    异常:它抛出ArithmeticException当结果溢出一个int时。
    例子:

    Input: 
    num1 = 8727
    nm2 = 2
    
    Output: 17454
    

    下面的程序演示了Java.lang.StrictMath.multiplyExact()方法。

    // Java praogram to illustrate the 
    // Java.lang.StrictMath.multiplyExact() 
    import java.lang.*; 
      
    class Geeks { 
      
        public static void main(String args[]) 
        { 
            long num1 = 2727810, num2 = 9892829; 
            int num3 = 817, num4 = 3; 
            System.out.println("Product of " + num1 + " and "
            + num2 + " is " + StrictMath.multiplyExact(num1, num2)); 
      
            System.out.println("Product of " + num3 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num3, num4)); 
      
            System.out.println("Product of " + num2 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num2, num4)); 
        } 
    }
    输出:
    Product of 2727810 and 9892829 is 26985757874490
    Product of 817 and 3 is 2451
    Product of 9892829 and 3 is 29678487
    
  3. multipleExact(long num1,long num2)是Java中StrictMath类的内置函数,用于获取给定参数的乘积。当结果长时间溢出时,它将引发异常。由于此函数是静态的,因此无需创建对象。
    用法:
    public static long multiplyExact(long num1, long num2)

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

    • num1: 这是代表一个参数的长类型
    • num2: 这是长型,代表另一个参数

    返回值:该方法返回num1和num2的乘积。
    异常:它抛出ArithmeticException当结果长时间溢出时。
    例子:

    Input: 
    num1 = 64954
    nm2 = 6643
    
    Output: 431489422
    

    下面的程序演示了Java.lang.StrictMath.multiplyExact()方法。

    // Java praogram to illustrate the 
    // Java.lang.StrictMath.multiplyExact() 
    import java.lang.*; 
      
    class Geeks { 
      
        public static void main(String args[]) 
        { 
            long num1 = 772810, num2 = 22929, num3 = -81827; 
            long num4 = -823783; 
            System.out.println("Product of " + num1 + " and "
            + num2 + " is " + StrictMath.multiplyExact(num1, num2)); 
      
            System.out.println("Product of " + num3 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num3, num4)); 
      
            System.out.println("Product of " + num2 + " and "
            + num4 + " is " + StrictMath.multiplyExact(num2, num4)); 
        } 
    }
    输出:
    Product of 772810 and 22929 is 17719760490
    Product of -81827 and -823783 is 67407691541
    Product of 22929 and -823783 is -18888520407
    


相关用法


注:本文由纯净天空筛选整理自ankita_chowrasia大神的英文原创作品 StrictMath multiplyExact() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。