📜  Java中的BitSet hashCode方法及示例

📅  最后修改于: 2022-05-13 01:55:39.133000             🧑  作者: Mango

Java中的BitSet hashCode方法及示例

Java中 BitSet 类的 hashCode() 方法用于获取特定此 BitSet 的哈希码值。这个返回的哈希码值取决于被传递的位集的设置位。

句法:

BitSet.hashCode()

参数:该方法不接受任何参数。

返回值:该方法返回BitSet的hashcode值。

下面的程序用于说明 BitSet.hashCode() 方法的工作:
方案一:

// Java code to illustrate HashCode()
import java.util.*;
  
public class BitSet_Demo {
    public static void main(String args[])
    {
        // Creating an empty BitSet
        BitSet init_bitset = new BitSet();
  
        // Use set() method to add elements into the Set
        init_bitset.set(10);
        init_bitset.set(20);
        init_bitset.set(30);
        init_bitset.set(40);
        init_bitset.set(50);
  
        // Displaying the BitSet
        System.out.println("BitSet: " + init_bitset);
  
        // Displaying the hashcode
        System.out.println("The HashCode: "
                           + init_bitset.hashCode());
    }
}
输出:
BitSet: {10, 20, 30, 40, 50}
The HashCode: 1075053010

方案二:

// Java code to illustrate HashCode()
import java.util.*;
  
public class BitSet_Demo {
    public static void main(String args[])
    {
        // Creating an empty BitSet
        BitSet init_bitset = new BitSet();
  
        // Use set() method to add elements into the Set
        init_bitset.set(40);
        init_bitset.set(25);
        init_bitset.set(31);
        init_bitset.set(48);
        init_bitset.set(53);
  
        // Displaying the BitSet
        System.out.println("BitSet: " + init_bitset);
  
        // Displaying the hashcode
        System.out.println("The HashCode: "
                           + init_bitset.hashCode());
    }
}
输出:
BitSet: {25, 31, 40, 48, 53}
The HashCode: -2111765038