Java Guava IntMath类

1 什么是Guava IntMath类

IntMath 提供了关于 int 的实用方法。

2 Guava IntMath类的语法

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

3 Guava IntMath类的方法

方法 描述
static int binomial(int n, int k) 返回 n 选择 k,也称为 n 和 k 的二项式系数,如果结果不适合 int,则返回 Integer.MAX_VALUE。
static int checkedAdd(int a, int b) 返回 a 和 b 的和,前提是它不溢出。
static int checkedMultiply(int a, int b) 返回 a 和 b 的乘积,前提是它不溢出。
static int checkedPow(int b, int k) 返回 b 的 k 次幂,前提是它不溢出。
static int checkedSubtract(int a, int b) 返回 a 和 b 的差值,前提是它不溢出。
static int divide(int p, int q, RoundingMode mode) 返回 p 除以 q 的结果,使用指定的 RoundingMode 进行舍入。
static int factorial(int n) 返回 n!,即前 n 个正整数的乘积,如果 n == 0 则返回 1,如果结果不适合 int 则返回 Integer.MAX_VALUE。
static int gcd(int a, int b) 返回 a, b 的最大公约数。
static boolean isPowerOfTwo(int x) 如果 x 表示 2 的幂,则返回 true。
static int log10(int x, RoundingMode mode) 返回 x 的以 10 为底的对数,根据指定的舍入模式舍入。
static int log2(int x, RoundingMode mode) 返回 x 的以 2 为底的对数,根据指定的舍入模式舍入。
static int mean(int x, int y) 返回 x 和 y 的算术平均值,四舍五入到负无穷大。
static int mod(int x, int m) 返回 x mod m,一个小于 m 的非负值。
static int pow(int b, int k) 返回 b 的 k 次方。
static int sqrt(int x, RoundingMode mode) 返回 x 的平方根,以指定的舍入模式舍入。

5 Guava IntMath类的例子

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

package com.yiidian;

import com.google.common.math.IntMath;

import java.math.RoundingMode;

public class GuavaTester {

   public static void main(String args[]) {
      GuavaTester tester = new GuavaTester();
      tester.testIntMath();
   }

   private void testIntMath() {
      try {
         System.out.println(IntMath.checkedAdd(Integer.MAX_VALUE, Integer.MAX_VALUE));
         
      } catch(ArithmeticException e) {
         System.out.println("Error: " + e.getMessage());
      }

      System.out.println(IntMath.divide(100, 5, 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(IntMath.divide(100, 3, RoundingMode.UNNECESSARY));
         
      } catch(ArithmeticException e) {
         System.out.println("Error: " + e.getMessage());
      }

      System.out.println("Log2(2): " + IntMath.log2(2, RoundingMode.HALF_EVEN));

      System.out.println("Log10(10): " + IntMath.log10(10, RoundingMode.HALF_EVEN));

      System.out.println("sqrt(100): " + IntMath.sqrt(IntMath.pow(10,2), RoundingMode.HALF_EVEN));

      System.out.println("gcd(100,50): " + IntMath.gcd(100,50));

      System.out.println("modulus(100,50): " + IntMath.mod(100,50));

      System.out.println("factorial(5): " + IntMath.factorial(5));
   }
}

输出结果为:

 

热门文章

优秀文章