当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#abs()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger abs() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。