Java Data Type Tutorial - Java BigInteger.clearBit(int n)








Syntax

BigInteger.clearBit(int n) has the following syntax.

public BigInteger clearBit(int n)

Example

In the following code shows how to use BigInteger.clearBit(int n) method.

/*w ww . jav a 2 s .c om*/
import java.math.BigInteger;

public class Main {

  public static void main(String[] args) {

    // assign value to bi1
    BigInteger bi1 = new BigInteger("7");

    // perform clearbit operation on bi1 with index 2
    BigInteger bi2 = bi1.clearBit(2);

    System.out.println(bi2);
  }
}

The code above generates the following result.