當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。