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


Java BigInteger not()用法及代碼示例


java.math.BigInteger.not()方法用於查找BigInteger的bitwise-NOT。當且僅當此BigInteger為非負值時,此方法才返回負值。 BigInteger.not()方法對當前bigInteger進行按位“非”運算。

用法:

public BigInteger not()

參數:該方法不帶任何參數。


返回值:該方法返回與其一起使用的BigInteger的bitwise-NOT值。

例子:

Input: value = 2300
Output: -2301
Explanation:
Binary of 2300 = 100011111100
NOT of 100011111100 in signed 2's complement is 1111011100000011
Decimal value = -2301.

Input: value = 567689 
Output: -567690

以下示例程序旨在說明BigInteger()的not()方法:

/* 
*Program Demonstrate not() method of BigInteger  
*/
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creates  BigInteger object 
        BigInteger biginteger = new BigInteger("2300"); 
  
        // Call not() method to find ~this 
        BigInteger finalvalue = biginteger.not(); 
        String result = "Result of NOT operation on " +  
        biginteger + " is " + finalvalue; 
  
        // Print result 
        System.out.println(result); 
    } 
}
輸出:
Result of NOT operation on 2300 is -2301

參考:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#and(java.math.BigInteger)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger not() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。