Java.math.BigDecimal.abs() 方法



描述

java.math.BigDecimal.abs() 返回其值为该 BigDecimal 绝对值且 scale 为 this.scale() 的 BigDecimal。

声明

以下是 java.math.BigDecimal.abs() 方法的声明。

public BigDecimal abs()

参数

不适用

返回值

此方法返回所调用值的绝对值,即 abs(this)。

异常

不适用

示例

以下示例演示了 math.BigDecimal.abs() 方法的使用方法。

package com.tutorialspoint;

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("-40");

      // value before applying abs
      System.out.println("Value is " + bg1);

      // assign absolute value of bg1 to bg2
      bg2 = bg1.abs();

      // print bg2 value
      System.out.println("Absolute value is " + bg2);
   }
}

让我们编译并运行上述程序,它将产生以下结果 −

Value is -40
Absolute value is 40
java_math_bigdecimal.htm
广告