java.math.BigDecimal.add(BigDecimal augend, MathContext mc) 返回一個BigDecimal,其值為 (this + augend),根據MathContext設定進行舍入。如果任一數為零,並且精度設定為非零的話,其他數,如果需要捨入,作為結果。
以下是java.math.BigDecimal.add()方法的宣告
public BigDecimal add(BigDecimal augend, MathContext mc)
augend - 值被新增到當前的BigDecimal
mc - 使用上下文
此方法返回一個BigDecimal物件的值是this + augend,捨入是必要的。
ArithmeticException - 如果結果不準確,但是捨入模式為 UNNECESSARY.
下面的範例演示math.BigDecimal.add()方法的用法。
package com.yiibai; import java.math.*; public class BigDecimalDemo { public static void main(String[] args) { // create 3 BigDecimal objects BigDecimal bg1,bg2,bg3,bg4; // assign value to bg1 and bg2 bg1 = new BigDecimal("40.732"); bg2 = new BigDecimal("30.12"); // print bg1 and bg2 value System.out.println("Object Value is " + bg1); System.out.println("Augend value is " + bg2); // create MathContext object with 4 precision MathContext mc = new MathContext(4); // perform add operation on bg1 with augend bg2 and context mc bg3=bg1.add(bg2,mc); // print bg3 value with System.out.println("Result is " + bg3); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
Object Value is 40.732 Augend value is 30.12 Result is 70.85