Java.math.BigInteger.mod() 方法



说明

java.math.BigInteger.mod(BigInteger m) 返回一个值是 (this mod m) 的 BigInteger。此方法与余数的不同之处在于它始终返回一个非负数 BigInteger。

声明

以下是 java.math.BigInteger.mod() 方法的声明。

public BigInteger mod(BigInteger m)

BigInteger mod(BigInteger m)

m - 模数。

返回值

此方法返回一个值是 this mod m 的 BigInteger 对象。

异常

ArithmeticException - 如果 m ≤ 0。

示例

以下示例演示了 math.BigInteger.mod() 方法的用法。

package com.tutorialspoint;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

      // create 3 BigInteger objects
      BigInteger bi1, bi2, bi3;

      bi1 = new BigInteger("-100");
      bi2 = new BigInteger("3");

      // perform mod operation on bi1 using bi2
      bi3 = bi1.mod(bi2);
   
      String str = bi1 + " mod " + bi2 + " is " +bi3;

      // print bi3 value
      System.out.println( str );
   }
}

我们编译并运行以上程序,将生成以下结果 -

-100 mod 3 is 2
java_math_biginteger.htm
广告