Java Guava BigIntegerMath类

1 什么是Guava BigIntegerMath类

BigIntegerMath 提供了关于 BigInteger 的实用方法。

2 Guava BigIntegerMath类的语法

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

3 Guava BigIntegerMath类的方法

方法 描述
static BigInteger binomial(int n, int k) 返回 n 选择 k,也称为 n 和 k 的二项式系数,即 n/(k!(n - k)!)。
static BigInteger divide(BigInteger p, BigInteger q, RoundingMode mode) 返回 p 除以 q 的结果,使用指定的 RoundingMode 进行舍入。
static BigInteger factorial(int n) 返回 n!,即前 n 个正整数的乘积,如果 n == 0,则返回 1。
static boolean isPowerOfTwo(BigInteger x) 如果 x 表示 2 的幂,则返回 true。
static int log10(BigInteger x, RoundingMode mode) 返回 x 的以 10 为底的对数,根据指定的舍入模式舍入。
static int log2(BigInteger x, RoundingMode mode) 返回 x 的以 2 为底的对数,根据指定的舍入模式舍入。
static BigInteger sqrt(BigInteger x, RoundingMode mode) 返回 x 的平方根,以指定的舍入模式舍入。

5 Guava BigIntegerMath类的例子

让我们看一个简单的Guava BigIntegerMath类示例。

package com.yiidian;

import com.google.common.math.BigIntegerMath;

import java.math.BigInteger;
import java.math.RoundingMode;

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));
   }
}

输出结果为:

 

热门文章

优秀文章