当前位置: 首页 > 文档资料 > Guava 中文文档 >

BigIntegerMath

优质
小牛编辑
148浏览
2023-12-01

BigIntegerMath在BigInteger上提供实用程序方法。

Class 声明 (Class Declaration)

以下是com.google.common.math.BigIntegerMath类的声明 -

@GwtCompatible(emulated = true)
public final class BigIntegerMath
   extends Object

方法 (Methods)

Sr.No方法和描述
1

static BigInteger binomial(int n, int k)

返回n选择k,也称为n和k的二项式系数,即n! /(k!(n - k)!)。

2

static BigInteger divide(BigInteger p, BigInteger q, RoundingMode mode)

返回将p除以q的结果,使用指定的RoundingMode进行舍入。

3

static BigInteger factorial(int n)

返回n!,即前n个正整数的乘积,如果n == 0,则返回1。

4

static boolean isPowerOfTwo(BigInteger x)

如果x表示2的幂,则返回true。

5

static int log10(BigInteger x, RoundingMode mode)

返回x的以10为底的对数,根据指定的舍入模式进行舍入。

6

static int log2(BigInteger x, RoundingMode mode)

返回x的base-2对数,根据指定的舍入模式进行舍入。

7

static BigInteger sqrt(BigInteger x, RoundingMode mode)

返回x的平方根,使用指定的舍入模式进行舍入。

方法继承 (Methods Inherited)

该类继承以下类中的方法 -

  • java.lang.Object

BigIntegerMath类的示例

使用您选择的任何编辑器在C:/》 Guava.创建以下java程序C:/》 Guava.

GuavaTester.java

import java.math.BigInteger;
import java.math.RoundingMode;
import com.google.common.math.BigIntegerMath;
public class GuavaTester {
   public static void main(String args[]) {
      GuavaTester tester = new GuavaTester();
      tester.testBigIntegerMath();
   }
   private void testBigIntegerMath() {
      System.out.println(BigIntegerMath.divide(BigInteger.TEN, new BigInteger("2"), RoundingMode.UNNECESSARY));
      try {
         //exception will be thrown as 100 is not completely divisible by 3 
         // thus rounding is required, and RoundingMode is set as UNNESSARY
         System.out.println(BigIntegerMath.divide(BigInteger.TEN, new BigInteger("3"), RoundingMode.UNNECESSARY));
      } catch(ArithmeticException e) {
         System.out.println("Error: " + e.getMessage());
      }
      System.out.println("Log2(2): " + BigIntegerMath.log2(new BigInteger("2"), RoundingMode.HALF_EVEN));
      System.out.println("Log10(10): " + BigIntegerMath.log10(BigInteger.TEN, RoundingMode.HALF_EVEN));
      System.out.println("sqrt(100): " + BigIntegerMath.sqrt(BigInteger.TEN.multiply(BigInteger.TEN), RoundingMode.HALF_EVEN));
      System.out.println("factorial(5): "+BigIntegerMath.factorial(5));
   }
}

验证结果

使用javac编译器编译类如下 -

C:\Guava>javac GuavaTester.java

现在运行GuavaTester来查看结果。

C:\Guava>java GuavaTester

看到结果。

5
Error: Rounding necessary
Log2(2): 1
Log10(10): 1
sqrt(100): 10
factorial(5): 120