Example usage for java.util BitSet hashCode

List of usage examples for java.util BitSet hashCode

Introduction

In this page you can find the example usage for java.util BitSet hashCode.

Prototype

public int hashCode() 

Source Link

Document

Returns the hash code value for this bit set.

Usage

From source file:Main.java

public static void main(String[] args) {

    BitSet bitset1 = new BitSet(8);
    BitSet bitset2 = new BitSet(8);

    // assign values to bitset1
    bitset1.set(0);/*from ww w.  j av a2 s .  c  om*/
    bitset1.set(1);
    bitset1.set(2);

    // assign values to bitset2
    bitset2.set(2);
    bitset2.set(4);

    // print the sets
    System.out.println("Bitset1:" + bitset1);
    System.out.println("Bitset2:" + bitset2);

    // return a hashcode for each bitset
    System.out.println(bitset1.hashCode());
    System.out.println(bitset2.hashCode());

}