问题描述:
BigDecimal amountCount=BigDecimal.ZERO;
amountCount.add(new BigDecimal(100));结果是amountCount值依然为0
解决方法:
BigDecimal为不可变类,
所以执行运算的结果需要再返回给amountCount
amountCount= amountCount.add(new BigDecimal(100));
问题描述:
BigDecimal amountCount=BigDecimal.ZERO;
amountCount.add(new BigDecimal(100));结果是amountCount值依然为0
解决方法:
BigDecimal为不可变类,
所以执行运算的结果需要再返回给amountCount
amountCount= amountCount.add(new BigDecimal(100));