Java BitSet.equals(Object obj)

Syntax

BitSet.equals(Object obj) has the following syntax.

public boolean equals(Object obj)

Example

In the following code shows how to use BitSet.equals(Object obj) method.


import java.util.BitSet;
/*w w  w .  j  av  a  2  s  .co m*/
public class Main {

   public static void main(String[] args) {

      
      BitSet bitset1 = new BitSet(8);

      bitset1.set(0);
      bitset1.set(1);
      bitset1.set(2);

      BitSet bitset2 = new BitSet(8);

      bitset1.set(0);
      bitset1.set(1);
      bitset1.set(2);

      
      
      System.out.println(bitset1.equals(bitset2));
      
   }
}

The code above generates the following result.