Java数据处理,Map中数据转double并取小数点后两位

BigDecimal order = (BigDecimal) map.get("finishrat");
double d = (order == null ? 0 : order.doubleValue());
String format = String.format("%.2f", d);
上一篇:PHP函数、数组


下一篇:codeforces 430 A Points and Segments (easy)