BigInteger 和 BigDecimal类
1、应用场景
- BigInteger 适合保存比较大的整型
- BigDecimal 适合保存精度更高的浮点型(小数)
2、BigInteger
当编程中需要处理很大的整数,long 不够用,就需要使用 Biglnteger 类。
使用
//创建:和类一样,new
BigInteger bigInteger = new BigInteger("43256666666666666666666666666");
System.out.println(bigInteger);
//在对BigInteger进行加减乘除的时候,需要使用对应的方法,不能直接进行+– */
BigInteger b1 = new BigInteger("180");
BigInteger b2 = new BigInteger("20");
//add
BigInteger add = b1.add(b2);
System.out.println(add);
//subtract
BigInteger subtract = b1.subtract(b2);
System.out.println(subtract);
//multiply
BigInteger multiply = b1.multiply(b2);
System.out.println(multiply);
//divide
BigInteger divide = b1.divide(b2);
System.out.println(divide);
3、BigDecimal
当我们需要保存一个精度很高的数时,double 不够用
使用
//创建
BigDecimal bigDecimal = new BigDecimal(123.5555555555555555555555555555555555555555555);
System.out.println(bigDecimal);
// 1.如果对 BigDecimal进行运算,比如加减乘除,需要使用对应的方法
// 2.创建一个需要操作的 BigDecimal然后调用相应的方法即可
BigDecimal b1 = new BigDecimal("32.032");
BigDecimal b2 = new BigDecimal("20.02");
//加
BigDecimal add = b1.add(b2);
System.out.println(add);
//减
BigDecimal subtract = b1.subtract(b2);
System.out.println(subtract);
//乘
BigDecimal multiply = b1.multiply(b2);
System.out.println(multiply);
//除
BigDecimal divide = b1.divide(b2);
System.out.println(divide);
//【可能】抛出异常ArithmeticException,因为他保留的是一个精度很高的数字
//解决:只需要在divide时,指定精度即可
//如果有无限循环小数,就会保留分子的精度
BigDecimal divide2 = b1.divide(b2,BigDecimal.ROUND_CEILING);