- The java.math.BigDecimal.plus() is an inbuilt method in java that returns a BigDecimal whose value is (+this), and whose scale is this.scale(). This method, which simply returns this BigDecimal is included for symmetry with the unary minus method negate().
Syntax:
public BigDecimal plus()
Parameters: The function does not accepts any parameter.
Return value: This method returns the object value i.e., this.
Below program illustrates the working of the above mentioned method:
Program 1:
Output: The value of the BigDecimal is -45.652
Program 2:
Output: The value of the BigDecimal is 7458.3256
- The java.math.BigDecimal.plus(MathContext mc) is an inbuilt method in java that returns a BigDecimal whose value is (+this), with rounding according to the context settings.
Syntax:
public BigDecimal plus(MathContext mc)
Parameters: This method accepts a single parameter mc which refers to the context of rounding to use i.e., up to what digit the value would be rounded.
Return value: This method returns the value of BigDecimal Object, rounded as necessary. A zero result will have a scale of 0.
Below program illustrates the working of the above mentioned method:
Program 1:
Output: Result of plus is -452.3
Program 2: