Java Data Type Tutorial - Java BigInteger.andNot(BigInteger val)








Syntax

BigInteger.andNot(BigInteger val) has the following syntax.

public BigInteger andNot(BigInteger val)

Example

In the following code shows how to use BigInteger.andNot(BigInteger val) method.

//  w  ww . j a  va 2 s . com

import java.math.BigInteger;

public class Main {

  public static void main(String[] args) {

    // assign values to bi1, bi2
    BigInteger bi1 = new BigInteger("6"); // 110
    BigInteger bi2 = new BigInteger("3"); // 011

    // perform andNot operation on bi1 using bi2
    BigInteger bi3 = bi1.andNot(bi2);

    System.out.println(bi3);
  }
}

The code above generates the following result.