当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 BitSet hashCode Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。