欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java BigDecimal详解_动力节点Java学院整理

程序员文章站 2024-02-25 18:26:27
1.引言         借用《effactive java》这本书中的话,float和double...

1.引言

        借用《effactive java》这本书中的话,float和double类型的主要设计目标是为了科学计算和工程计算。他们执行二进制浮点运算,这是为了在广域数值范围上提供较为精确的快速近似计算而精心设计的。然而,它们没有提供完全精确的结果,所以不应该被用于要求精确结果的场合。但是,商业计算往往要求结果精确,例如银行存款数额,这时候bigdecimal就派上大用场啦。 

2.bigdecimal简介

        bigdecimal 由任意精度的整数非标度值 和32 位的整数标度 (scale) 组成。如果为零或正数,则标度是小数点后的位数。如果为负数,则将该数的非标度值乘以 10 的负scale 次幂。因此,bigdecimal表示的数值是(unscaledvalue × 10-scale)。

3.测试代码

3.1构造函数(主要测试参数类型为double和string的两个常用构造函数)     

 bigdecimal adouble =new bigdecimal(1.22);
    system.out.println("construct with a double value: " + adouble);
    bigdecimal astring = new bigdecimal("1.22");
     system.out.println("construct with a string value: " + astring);

       你认为输出结果会是什么呢?如果你没有认为第一个会输出1.22,那么恭喜你答对了,输出结果如下:    

 construct with a doublevalue:1.2199999999999999733546474089962430298328399658203125
     construct with a string value: 1.22

        jdk的描述:

1、参数类型为double的构造方法的结果有一定的不可预知性。有人可能认为在java中写入newbigdecimal(0.1)所创建的bigdecimal正好等于 0.1(非标度值 1,其标度为 1),但是它实际上等于0.1000000000000000055511151231257827021181583404541015625。这是因为0.1无法准确地表示为 double(或者说对于该情况,不能表示为任何有限长度的二进制小数)。这样,传入到构造方法的值不会正好等于 0.1(虽然表面上等于该值)。

        2、另一方面,string 构造方法是完全可预知的:写入 newbigdecimal("0.1") 将创建一个 bigdecimal,它正好等于预期的 0.1。因此,比较而言,通常建议优先使用string构造方法。

        3、当double必须用作bigdecimal的源时,请注意,此构造方法提供了一个准确转换;它不提供与以下操作相同的结果:先使用double.tostring(double)方法,然后使用bigdecimal(string)构造方法,将double转换为string。要获取该结果,请使用static valueof(double)方法。

3.2 加法操作

 bigdecimal a =new bigdecimal("1.22");
    system.out.println("construct with a string value: " + a);
    bigdecimal b =new bigdecimal("2.22");
    a.add(b);
    system.out.println("aplus b is : " + a);

        我们很容易会认为会输出:

        construct with a stringvalue: 1.22

        a plus b is :3.44

        但实际上a plus b is : 1.22

4.源码分析

4.1 valueof(doubleval)方法  

 public  static bigdecimal valueof(double val) {
    // reminder: a zero double returns '0.0', so we cannotfastpath
    // to use the constant zero. this might be important enough to
    // justify a factory approach, a cache, or a few private
    // constants, later.
    returnnew bigdecimal(double.tostring(val));//见3.1关于jdk描述的第三点
  }

4.2 add(bigdecimal augend)方法    

public bigdecimal  add(bigdecimal augend) {
     long xs =this.intcompact; //整型数字表示的bigdecimal,例a的intcompact值为122
     long ys = augend.intcompact;//同上
     biginteger fst = (this.intcompact !=inflated) ?null :this.intval;//初始化biginteger的值,intval为bigdecimal的一个biginteger类型的属性
     biginteger snd =(augend.intcompact !=inflated) ?null : augend.intval;
     int rscale =this.scale;//小数位数
     long sdiff = (long)rscale - augend.scale;//小数位数之差
     if (sdiff != 0) {//取小数位数多的为结果的小数位数
       if (sdiff < 0) {
         int raise =checkscale(-sdiff);
         rscale =augend.scale;
         if (xs ==inflated ||
           (xs = longmultiplypowerten(xs,raise)) ==inflated)
           fst =bigmultiplypowerten(raise);
        }else {
          int raise =augend.checkscale(sdiff);
          if (ys ==inflated ||(ys =longmultiplypowerten(ys,raise)) ==inflated)
            snd = augend.bigmultiplypowerten(raise);
        }
     }
     if (xs !=inflated && ys !=inflated) {
       long sum = xs + ys;
       if ( (((sum ^ xs) &(sum ^ ys))) >= 0l)//判断有无溢出
         return bigdecimal.valueof(sum,rscale);//返回使用bigdecimal的静态工厂方法得到的bigdecimal实例
      }
      if (fst ==null)
        fst =biginteger.valueof(xs);//biginteger的静态工厂方法
      if (snd ==null)
        snd =biginteger.valueof(ys);
      biginteger sum =fst.add(snd);
      return (fst.signum == snd.signum) ?new bigdecimal(sum,inflated, rscale, 0) :
       new bigdecimal(sum,compactvalfor(sum),rscale, 0);//返回通过其他构造方法得到的bigdecimal对象
    }

        以上只是对加法源码的分析,减乘除其实最终都返回的是一个新的bigdecimal对象,因为biginteger与bigdecimal都是不可变的(immutable)的,在进行每一步运算时,都会产生一个新的对象,所以a.add(b);虽然做了加法操作,但是a并没有保存加操作后的值,正确的用法应该是a=a.add(b); 

5.总结

        (1)商业计算使用bigdecimal。

        (2)尽量使用参数类型为string的构造函数。

        (3) bigdecimal都是不可变的(immutable)的,在进行每一步运算时,都会产生一个新的对象,所以在做加减乘除运算时千万要保存操作后的值。

        (4)我们往往容易忽略jdk底层的一些实现细节,导致出现错误,需要多加注意。

以上所述是小编给大家介绍的java bigdecimal详解_动力节点java学院整理,希望对大家有所帮助