부동 소수점을 "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 값을 반환해야합니다.
Float
가치 반환이 필요 하지 않습니다Double
.
String.format(java.util.Locale.US,"%.2f", floatValue);