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


Java AbstractSet hashCode()用法及代碼示例


Java AbstractSet中的AbstractSet.hashCode()方法用於獲取特定此AbstractSet的哈希碼值。一個集合由多個存儲元素的存儲桶組成。每個存儲桶都有唯一的標識,當元素插入存儲桶時,其哈希碼與存儲桶的標識符匹配,如果匹配,則元素存儲成功。哈希碼就是這樣工作的。

用法:

AbstractSet.hashCode()

參數:該方法不接受任何參數。


返回值:該方法返回集合的哈希碼值。

下麵的程序用於說明AbstractSet.hashCode()方法的用法:

示例1:

// Java code to illustrate the hashCode() method 
  
import java.util.*; 
  
public class Abstract_Set_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty AbstractSet 
        AbstractSet<String> 
            abs_set = new HashSet<String>(); 
  
        // Adding elements into the set 
        abs_set.add("Geeks"); 
        abs_set.add("4"); 
        abs_set.add("Geeks"); 
        abs_set.add("Welcomes"); 
        abs_set.add("You"); 
  
        // Displaying the AbstractSet 
        System.out.println("Initial Set is: "
                           + abs_set); 
  
        // Getting the hashcode value for the set 
        System.out.println("The hashcode value of the set: "
                           + abs_set.hashCode()); 
    } 
}
輸出:
Initial Set is: [4, Geeks, You, Welcomes]
The hashcode value of the set-295204749

示例2:

// Java code to illustrate the hashCode() method 
  
import java.util.*; 
  
public class Abstract_Set_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty AbstractSet 
        AbstractSet<Integer> 
            abs_set = new TreeSet<Integer>(); 
  
        // Adding elements into the set 
        abs_set.add(15); 
        abs_set.add(20); 
        abs_set.add(30); 
        abs_set.add(40); 
        abs_set.add(50); 
  
        // Displaying the AbstractSet 
        System.out.println("Initial Set is: "
                           + abs_set); 
  
        // Getting the hashcode value for the set 
        System.out.println("The hashcode value of the set: "
                           + abs_set.hashCode()); 
    } 
}
輸出:
Initial Set is: [15, 20, 30, 40, 50]
The hashcode value of the set: 155

注意:可以對具有不同數據類型的變體和組合的任何類型的Set執行相同的操作。



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 AbstractSet hashCode() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。