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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。