Java.math.BigInteger.abs() 方法

描述

java.math.BigInteger.abs() 返回一个 BigInteger,其值是这个 BigInteger 的绝对值。


声明

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

public BigInteger abs()

参数

NA


返回值

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


异常

NA


示例

下面的例子展示了 math.BigInteger.abs() 方法的使用。

package com.tutorialspoint;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

      // create 4 BigInteger objects
      BigInteger bi1, bi2, bi3, bi4;  

      // assign values to bi1, bi2
      bi1 = new BigInteger("123");
      bi2 = new BigInteger("-123");

      // assign absolute values of bi1, bi2 to bi3, bi4
      bi3 = bi1.abs();
      bi4 = bi2.abs();
	  
      String str1 = "Absolute value of " + bi1 + " is " + bi3;
      String str2 = "Absolute value of " + bi2 + " is " + bi4;

      // print bi3, bi4 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Absolute value of 123 is 123
Absolute value of -123 is 123