BigDecimal 舍入模式(Rounding mode)介绍
我们在使用Java大整数类时,有时根据实际需求需要对小数的舍入模式进行改变(默认为四舍五入方式)。下面对几种舍入模式进行介绍:*ROUND_CEILING*Rounding mode to round towards positive infinity. 向正无穷方向舍入 *ROUND_DOWN*Rounding mode to round towards zero. 向零方向舍入 *ROU