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


Java BigInteger divideAndRemainder()用法及代码示例


BigInteger类divideAndRemainder()方法

  • divideAndRemainder() 方法可在java.math包。
  • divideAndRemainder() 方法返回由 2 个元素组成的 BigInteger 数组,其中包含使用 (this BigInteger)/(BigInteger val) 计算的商,后跟使用 (this BigInteger) % (BigInteger val) 计算的余数。
  • divideAndRemainder() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • divideAndRemainder() 方法在计算余数时可能会抛出异常。
    ArithmeticException:当给定的参数值为 0 时,可能会抛出此异常。

用法:

    public BigInteger[] divideAndRemainder(BigInteger val);

参数:

  • BigInteger val– 表示要除以该 BigInteger 并生成余数的值。

返回值:

这个方法的返回类型是BigInteger[],它返回一个由 "BigInteger" 类型的两个元素组成的 BigInteger 数组,商使用 (this BigInteger)/(BigInteger val) 计算,余数使用 (this BigInteger) % (BigInteger val) 计算。

例:

// Java program to demonstrate the example 
// of divideAndRemainder(BigInteger val)  method of BigInteger

import java.math.*;

public class DivideAndRemainderOfBI {
    public static void main(String args[]) {
        // Initialize two variables divi, divisr
        String divi = "120";
        String divisr = "4";

        // Initialize two BigInteger objects 
        BigInteger b_int1 = new BigInteger(divi);
        BigInteger b_int2 = new BigInteger(divisr);

        // Display b_int1 and b_int2
        System.out.println("b_int1:" + b_int1);
        System.out.println("b_int2:" + b_int2);
        
        System.out.println("divideAndRemainder(BigInteger):");

        // divides this BigInteger (b_int1) by the
        // given BigInteger (b_int2) and return the BigInteger[]
        // of two values (Quotient, Remainder)
        BigInteger[] div_rem = b_int1.divideAndRemainder(b_int2);
        System.out.println("Quotient div_rem[0]:" + div_rem[0]);
        System.out.println("Remainder div_rem[1]:" + div_rem[1]);
    }
}

输出

b_int1:120
b_int2:4
divideAndRemainder(BigInteger):
Quotient div_rem[0]:30
Remainder div_rem[1]:0


相关用法


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