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


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


java.math.BigInteger.andNot(BigInteger val)方法返回一個BigInteger,其值為(this&〜val),其中該值是當前使用該函數的BigInteger的值,而val是作為參數傳遞給該函數的bigInteger 。此方法等效於and(val.not()),是為了方便進行掩膜操作。當且僅當此值為負且val為正時,此方法才返回負的BigInteger。 andNOT()方法對當前bigInteger和作為參數傳遞的bigInteger的NOT值應用按位與運算。

用法:

public BigInteger andNot(BigInteger val)

參數:該方法接受一個參數val BigInteger類型,表示需要與當前BigInteger進行補充和與的值。


返回值:該方法用於返回(this&〜val)到當前使用該函數的BigInteger,而val是作為參數傳遞給函數的bigInteger。

例子:

Input: value1 = 2300, value2 = 3400
Output: 180
Explanation:
Binary of 2300 = 100011111100
Not of 3400 in binary signed 2's complement is 1111001010110111
AND of 100011111100 and 1111001010110111= 10110100
Decimal of 10110100 = 180.

Input: value1 = 432045, value2 = 321076
Output: 135561

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

/* 
*Program Demonstrate notNot() method of BigInteger  
*/
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Create 2 BigInteger objects 
        BigInteger biginteger = new BigInteger("2300"); 
        BigInteger val = new BigInteger("3400"); 
  
        // Call andNot() method to find this & ~val 
        BigInteger finalvalue = biginteger.andNot(val); 
        String result = "Result of andNot operation between " +  
        biginteger + " and "+ val + " is " + finalvalue; 
  
        // Print the result 
        System.out.println(result); 
    } 
}
輸出:
Result of andNot operation between 2300 and 3400 is 180

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



相關用法


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