服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Core Java 简单谈谈HashSet(推荐)

Core Java 简单谈谈HashSet(推荐)

2021-01-04 16:22huangqingshi Java教程

下面小编就为大家带来一篇Core Java 简单谈谈HashSet(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

同学们在看这个问题的时候,我先提出者两个问题,然后大家带着问题看这个文章会理解的更好。

1、HashSet为什么添加元素时不能添加重复元素?

2、HashSet是否添加null元素?

打开源码, 我们看到如下代码,我们看到HashSet也有一个HashMap做为属性,HashSet()的构造方法就是将这个map实例化。如果大家对HashMap还不了解话,可以看我的这篇博文。还要注意有一个静态final的对象PRESENT,这个是干什么用的,咱们继续往下看。

?
1
2
3
4
5
6
7
8
9
10
11
12
private transient HashMap<E,Object> map;
 
 // Dummy value to associate with an Object in the backing Map
 private static final Object PRESENT = new Object();
 
 /**
  * Constructs a new, empty set; the backing <tt>HashMap</tt> instance has
  * default initial capacity (16) and load factor (0.75).
  */
 public HashSet() {
  map = new HashMap<>();
 }

然后我们再打开其add方法,其就是将元素e放到HashMap中,然后将静态final对象PRESENT作为value放到里边,如果添加成功,那么HashMap返回null,然后也就是添加成功了,上一篇博文也讲到了,咱们再讲一次作为复习。如果将element放到HashMap里边,首先判断其hashCode,如果hashCode没有找到,就根据hashCode计算index放到对应的bucket中,如果hashCode相同的话,那么再根据key的是否equals作为第二判断,放到相应的linked list里边了。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
  * Adds the specified element to this set if it is not already present.
  * More formally, adds the specified element <tt>e</tt> to this set if
  * this set contains no element <tt>e2</tt> such that
  * <tt>(e==null&nbsp;?&nbsp;e2==null&nbsp;:&nbsp;e.equals(e2))</tt>.
  * If this set already contains the element, the call leaves the set
  * unchanged and returns <tt>false</tt>.
  *
  * @param e element to be added to this set
  * @return <tt>true</tt> if this set did not already contain the specified
  * element
  */
 public boolean add(E e) {
  return map.put(e, PRESENT)==null;

当然第二个问题同学们是否也想到了,因为hashMap是支持key为null的,所以HashSet也是可以添加key为null的元素的。HashMap用的地方这么多,大家知道它很重要了吧?!

以上这篇Core Java 简单谈谈HashSet(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/huangqingshi/archive/2017/09/17/7538346.html

延伸 · 阅读

精彩推荐