📅  最后修改于: 2022-03-11 14:52:26.608000             🧑  作者: Mango
// calling the function round
round(200.3456, 2);
// Include this function in your class
public static double round(double value, int places) {
if (places < 0) throw new IllegalArgumentException();
BigDecimal bd = BigDecimal.valueOf(value);
bd = bd.setScale(places, RoundingMode.HALF_UP);
return bd.doubleValue();
}