In the example method of divideAndRemainder(BigDecimal divisor, MathContext mc) returns 'quotient' as per context settings defined in MathContext class object 'mc'.
Java BigDecimal divideAndRemainder method example
In the example method of divideAndRemainder(BigDecimal divisor, MathContext mc) returns 'quotient' as per context settings defined in MathContext class object 'mc'.Method divides this.object value by the value of object passed.
Method return type is an bigdecimal array of length two(2). This array contains the method generated results.
At array index zero(array[0]) method generated first result, 'quotient' is located & at array index one(array[1])
method generated second result, 'remainder' is located.
The first result 'quotient' will always possess integer format. This means method will only generate the integer
part, i.e. the portion of 'quotient' before decimal. Method will generate the remainder also as the second(array[1]) element of
bigdecimal array[].
Method throws Arithmetic Exception when the divisor value is equal to zero.
Note : Using context settings makes no effect in the generating results as methods
neglects decimal part of the answer, thus no decimal part therefore no rounding behavior required hence no context settings required.
Syntax for using the method:
public BigDecimal[] divideAndRemainder(BigDecimal divisor, MathContext mc)
bigdecimal_objectName = dividendName.divideAndRemainder(divisor, mc)
Java_divideAndRemainder_BigDecimal_divisor_MathContext_mc.java
import java.math.BigDecimal;
|