Java Data Type Tutorial - Java BigDecimal ROUND_UNNECESSARY








Syntax

BigDecimal.ROUND_UNNECESSARY has the following syntax.

public static final int ROUND_UNNECESSARY

Example

In the following code shows how to use BigDecimal.ROUND_UNNECESSARY field.

import java.math.BigDecimal;
/*  w w w . j  av  a 2 s . c o m*/
public class Main {

  public static void main(String[] args) {

    BigDecimal bg1 = new BigDecimal("40");

    BigDecimal bg2 = new BigDecimal("3");
    

    BigDecimal bg3 = bg1.divide(bg2, BigDecimal.ROUND_UNNECESSARY);

    System.out.println(bg3);
  }
}

The code above generates the following result.