java.math.BigDecimal.plus(MathContext mc) 返回一個BigDecimal,其值是(+this),四捨五入根據上下文設定。
該方法的效果與 round(MathContext)方法是相同。
以下是java.math.BigDecimal.plus()方法的宣告
public BigDecimal plus(MathContext mc)
mc - 使用上下文
此方法返回BigDecimal物件的值,捨入是必要的。零結果將有一個比例為0。
ArithmeticException - 如果結果不準確,但捨入模式為UNNECESSARY
下面的例子顯示math.BigDecimal.plus()方法的用法
package com.yiibai; import java.math.*; public class BigDecimalDemo { public static void main(String[] args) { // create 2 BigDecimal Objects BigDecimal bg1, bg2; bg1 = new BigDecimal("-333.3454"); MathContext mc = new MathContext(4); // 4 precision // perform plus on bg1 using mc bg2 = bg1.plus(mc); String str = "The Result of plus using context settings is " + bg2; // print the value of bg2 System.out.println( str ); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
The Result of plus using context settings is -333.3