Java BitSet hashCode方法及示例

Java BitSet hashCode方法及示例

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

语法

BitSet.hashCode()

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

返回值: 该方法返回BitSet的哈希码值。

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

程序1 :

// 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

程序2

// 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程