BigDecimal的常用方法总结
一.为什么要用到BigDecimal?1.首先上一个小例子 以下这段代码,大家猜一下运行结果是什么? double test1 = 0.01; double test2 = 0.03; double testCountValue = test2-test1; System.out.println("相减的值为----"+testCountValue);一眼看上去是不是以为是0....