java.math.BigDecimal.round ( MathContext m ) es un método incorporado en Java que devuelve un valor BigDecimal redondeado según la configuración de MathContext. Si el ajuste de precisión es 0, no se produce redondeo.
Sintaxis:
public BigDecimal round(MathContext m)
Parámetros: El método acepta un solo parámetro m que se refiere al contexto a usar, que es el valor hasta el cual se redondeará el valor BigDecimal.
Valor devuelto: este método devuelve un BigDecimal redondeado según la configuración de MathContext.
Los siguientes programas ilustran el funcionamiento del método java.math.BigDecimal.round( MathContext m ):
Programa 1:
// Java program to demonstrate the // round() method import java.math.*; public class Gfg { public static void main(String[] args) { // Assign value to BigDecimal object b1 BigDecimal b1 = new BigDecimal("4.2585"); MathContext m = new MathContext(4); // 4 precision // b1 is rounded using m BigDecimal b2 = b1.round(m); // Print b2 value System.out.println("The value of " + b1 + " after rounding is " + b2); } }
The value of 4.2585 after rounding is 4.259
Programa 2:
// Java program to demonstrate the // round() method import java.math.*; public class gfg { public static void main(String[] args) { // Assigning value to BigDecimal object b1 BigDecimal b1 = new BigDecimal("-4.2585"); MathContext m = new MathContext(4); // 4 precision // b1 is rounded using m BigDecimal b2 = b1.round(m); // Print b2 value System.out.println("The value of " + b1 + " after rounding is " + b2); } }
The value of -4.2585 after rounding is -4.259
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#round(java.math.MathContext)
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA