java.math.BigDecimal.plus()%uA0返回一个BigDecimal,其值是%uA0(+this),并且其刻度为是%uA0this.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