Java中的 BigInteger abs() 方法
先决条件: BigInteger 基础
Java.math.BigInteger.abs()方法返回 BigInteger 的绝对值。通过使用这种方法,可以找到存储为 BigInteger 的任何大型数值数据的绝对值。
句法:
public BigInteger abs()
参数:该方法不带任何参数。
返回值:该方法返回 BigInteger 的绝对值。
例子:
Input: -2300
Output: 2300
Explanation:
Applying mathematical abs() operation on
-2300, positive 2300 is obtained i.e |-2300| = 2300.
Input: -5482549
Output: 5482549
下面的程序说明了 BigInteger 的 abs() 方法:
// Below program illustrates the abs() method
// of BigInteger
import java.math.*;
public class GFG {
public static void main(String[] args) {
// Create BigInteger object
BigInteger biginteger=new BigInteger("-2300");
// abs() method on bigInteger to find the absolute value
// of a BigInteger
BigInteger absolutevalue= biginteger.abs();
// Define result
String result ="BigInteger "+biginteger+
" and Absolute value is "+absolutevalue;
// Print result
System.out.println(result);
}
}
输出:
BigInteger -2300 and Absolute value is 2300
参考: https: Java()