我需要格式化一个浮点数到小数点后n位。
尝试BigDecimal,但是返回值不正确…
public static float Redondear(float pNumero, int pCantidadDecimales) {
// the function is call with the values Redondear(625.3f, 2)
BigDecimal value = new BigDecimal(pNumero);
value = value.setScale(pCantidadDecimales, RoundingMode.HALF_EVEN); // here the value is correct (625.30)
return value.floatValue(); // but here the values is 625.3
}
我需要返回一个带有我指定的小数点后数位的浮点值。
我需要Float值返回而不是Double
.