BigInteger 类和 BigDecimal 类可以用于表示任意大小和精度的整数或者十进制数。
它们都是不可变的。
可以使用 new BigInteger(String) 和 new BigDecimal(String) 来创建他俩的实例,使用 add, subtract, multiple, divide, remainder 方法完成算术运算,使用 compareTo 方法比较两个比较大的数,如下所示:
BigInteger a = new BigInteger("9223372036854775807");
BigInteger b = new BigInteger("2");
BigInteger c = a.multiply(b); // a * b
System.out.println(c); // 输出 18446744073709551614
BigInteger.ONE 和 new BigInteger("1") 是一样的
对 Decimal 对象的精度没有限制,如果结果不能终止,那么 divide 方法会抛出 ArithmeticException 异常。可以通过重载的 divide(BigDecimal d, int scale, int roundingMode) 方法来指定尺度和舍入方式来避免这个异常,scale 指的是小数点后几位,比如下面代码创建尺度为20、舍入方式为 BigDecimal.ROUND_UP 的 BigDecimal 对象
BigDecimal a = new BigDecimal(1.0);
BigDecimal b = new BigDecimal(3);
BigDecimal c = a.divide(b,20,BigDecimal.ROUND_UP); // 输出 0.33333333333333333334
BigDecimal 文档见另一篇文章:Java - BigDecimal 类