Java.math.BigDecimal.plus()方法實例
java.math.BigDecimal.plus() 返回一個BigDecimal,其值是 (+this),並且其刻度為是 this.scale().
這種方法,它隻是返回此BigDecimal是包括對稱性與一元減號方法negate()。
聲明
以下是java.math.BigDecimal.plus()方法的聲明
public BigDecimal plus()
參數
-
NA
返回值
此方法返回的對象的值即 this
異常
-
NA
例子
下麵的例子顯示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; // assign value to bg1 bg1 = new BigDecimal("-123.126"); // assign the result of plus method on bg1 to bg2 bg2 = bg1.plus(); String str = "The value of the BigDecimal is " + bg2; // print the value of bg2 System.out.println( str ); } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
The value of the BigDecimal is -123.126