Java BitSet.flip(int bitIndex)

Syntax

BitSet.flip(int bitIndex) has the following syntax.

public void flip(int bitIndex)

Example

In the following code shows how to use BitSet.flip(int bitIndex) method.


import java.util.BitSet;
/*from   w ww.  j a  va2  s .com*/
public class Main {

   public static void main(String[] args) {

      
      BitSet bitset1 = new BitSet(8);

      // assign values to bitset1
      bitset1.set(0);
      bitset1.set(1);
      bitset1.set(2);

      System.out.println(bitset1);
      
      bitset1.flip(1);
      
      System.out.println(bitset1);
   }
}

The code above generates the following result.