當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。