javaBigDecimal实现精确加减乘除运算
BigDecimal 由任意精度的整数⾮标度值 和32 位的整数标度 (scale) 组成。如果为零或正数,则标度是⼩数点后的位数。如果为负数,则将该数的⾮标度值乘以 10 的负scale 次幂。因此,BigDecimal表⽰的数值是(unscaledValue × 10-scale)。
java.math.BigDecimal。BigDecimal⼀共有4个够造⽅法,让我先来看看其中的两种⽤法:
第⼀种:BigDecimal(double val)
Translates a double into a BigDecimal.
第⼆种:BigDecimal(String val)
Translates the String repre sentation of a BigDecimal into a BigDecimal.
使⽤BigDecimal要⽤String来够造,要做⼀个加法运算,需要先将两个浮点数转为String,然后够造成BigDecimal,在其中⼀个上调⽤add ⽅法,传⼊另⼀个作为参数,然后把运算的结果(BigDecimal)再转换为浮点数。
1. public static double add(double v1,double v2)
2. public static double sub(double v1,double v2)
3. public static double mul(double v1,double v2)
4. public static double div(double v1,double v2)
5. public static double div(double v1,double v2,int scale)
6. public static double round(double v,int scale)
1. import java.math.BigDecimal;
2. /**
3. * 由于Java的简单类型不能够精确的对浮点数进⾏运算,这个⼯具类提供精
4. * 确的浮点数运算,包括加减乘除和四舍五⼊。
5. */
6. public class Arith{
7.    //默认除法运算精度
8.    private static final int DEF_DIV_SCALE = 10;
9.    //这个类不能实例化
10.    private Arith(){
11.    }
12. /**
13.    * 提供精确的加法运算。
14.    * @param v1 被加数
15.    * @param v2 加数
16.    * @return 两个参数的和
17. */
18. public static double add(double v1,double v2){
19.    BigDecimal b1 = new String(v1));
20.    BigDecimal b2 = new String(v2));
21.    return b1.add(b2).doubleValue();
22. }
23. /**bigdecimal除法保留小数
24.    * 提供精确的减法运算。
25.    * @param v1 被减数
26.    * @param v2 减数
27.    * @return 两个参数的差
28. */
29. public static double sub(double v1,double v2){
30.    BigDecimal b1 = new String(v1));
31.    BigDecimal b2 = new String(v2));
32.    return b1.subtract(b2).doubleValue();
32.    return b1.subtract(b2).doubleValue();
33. }
34. /**
35.    * 提供精确的乘法运算。
36.    * @param v1 被乘数
37.    * @param v2 乘数
38.    * @return 两个参数的积
39. */
40. public static double mul(double v1,double v2){
41.    BigDecimal b1 = new String(v1));
42.    BigDecimal b2 = new String(v2));
43.    return b1.multiply(b2).doubleValue();
44. }
45. /**
46.    * 提供(相对)精确的除法运算,当发⽣除不尽的情况时,精确到
47.    * ⼩数点以后10位,以后的数字四舍五⼊。
48.    * @param v1 被除数
49.    * @param v2 除数
50.    * @return 两个参数的商
51. */
52. public static double div(double v1,double v2){
53.    return div(v1,v2,DEF_DIV_SCALE);
54. }
55. /**
56.    * 提供(相对)精确的除法运算。当发⽣除不尽的情况时,由scale参数指
57.    * 定精度,以后的数字四舍五⼊。
58.    * @param v1 被除数
59.    * @param v2 除数
60.    * @param scale 表⽰表⽰需要精确到⼩数点以后⼏位。
61.    * @return 两个参数的商
62. */
63. public static double div(double v1,double v2,int scale){
64.    if(scale<0){
65.        throw new IllegalArgumentException(
66.        "The scale must be a positive integer or zero");
67.    }
68.    BigDecimal b1 = new String(v1));
69.    BigDecimal b2 = new String(v2));
70.    return b2.divide(b1,scale,BigDecimal.ROUND_HALF_UP).doubleValue();
71. }
72. /**
73.    * 提供精确的⼩数位四舍五⼊处理。
74.    * @param v 需要四舍五⼊的数字
75.    * @param scale ⼩数点后保留⼏位
76.    * @return 四舍五⼊后的结果
77. */
78. public static double round(double v,int scale){
79.    if(scale<0){
80.        throw new IllegalArgumentException("The scale must be a positive integer or zero");
81. }
82.    BigDecimal b = new String(v));
83.    BigDecimal one = new BigDecimal("1");
84.    return b.divide(one,scale,BigDecimal.ROUND_HALF_UP).doubleValue();
85.    }
86. };
87.
87.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。