今天get到了一个炒鸡好用的处理货币的类型!BigDecimal 还有相关格式---> NumberFormat
public static void main(String[] args){
double a = 0.03;
double b = 0.02;
double c= a-b;
}
把c打印输出是0.01吗??试试就知道了!
不管是float,还是double,都不能用做货币处理的类型!
试试下面这个吧~
BigDecimal
public static void main(String[] args){
BigDecimal record = new BigDecimal(String.valueOf(10000000));
BigDecimal new_record = new BigDecimal(String.valueOf(3));
NumberFormat currency = NumberFormat.getCurrencyInstance();//建立货币格式化引用
NumberFormat percent = NumberFormat.getPercentInstance();
percent.setMaximumFractionDigits(3);
sop("货币格式:\t" + currency.format(record));
sop("