BigDecimal 两种方式

第一种:

Double a=0.06;
Double b=0.01;

BigDecimal addend = BigDecimal.valueOf(a);
BigDecimal augend = BigDecimal.valueOf(b);

--

第二种

Double a=0.06;
Double b=0.01;

BigDecimal addend = new BigDecimal(a.toString());
BigDecimal augend = new BigDecimal(b.toString());

上一篇:MySQL 获得当前日期时间(以及时间的转换)


下一篇:Canvas:绘制路径