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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。