HashSet與HashMap的區別
轉自:https://www.cnblogs.com/codercui/p/6841730.html
面試中經常被問到HashMap與HashSet的區別。於是本渣靜下心來總結了一下HashSet與HashMap的區別。
先了解一下HashMap跟HashSet
HashSet:
HashSet實現了Set介面,它不允許集合中出現重複元素。當我們提到HashSet時,第一件事就是在將物件儲存在
HashSet之前,要確保重寫hashCode()方法和equals()方法,這樣才能比較物件的值是否相等,確保集合中沒有
儲存相同的物件。如果不重寫上述兩個方法,那麼將使用下面方法預設實現:
public boolean add(Object obj)方法用在Set新增元素時,如果元素值重複時返回 "false",如果新增成功則返回"true"
HashMap:
HashMap實現了Map介面,Map介面對鍵值對進行對映。Map中不允許出現重複的鍵(Key)。Map介面有兩個基本的實現
TreeMap和HashMap。TreeMap儲存了物件的排列次序,而HashMap不能。HashMap可以有空的鍵值對(Key(null)-Value(null))
HashMap是非執行緒安全的(非Synchronize),要想實現執行緒安全,那麼需要呼叫collections類的靜態方法synchronizeMap()實現。
public Object put(Object Key,Object value)方法用來將元素新增到map中。
HashSet與HashMap的區別:
HashMap | HashSet |
實現了Map介面 | 實現Set介面 |
儲存鍵值對 | 僅儲存物件 |
呼叫put()向map中新增元素 | 呼叫add()方法向Set中新增元素 |
HashMap使用鍵(Key)計算Hashcode |
HashSet使用成員物件來計算hashcode值, 對於兩個物件來說hashcode可能相同, 所以equals()方法用來判斷物件的相等性, 如果兩個物件不同的話,那麼返回false |
HashMap相對於HashSet較快,因為它是使用唯一的鍵獲取物件 | HashSet較HashMap來說比較慢 |
相關文章
- HashMap底層實現原理/HashMap與HashTable區別/HashMap與HashSet區別HashMap
- HashSet/HashMap、TreeSet/TreeMap、LinkedHashSet/LinkedHashMap 區別HashMap
- HashSet和HashMapHashMap
- HashMap、Hashtable、ConcurrentHashMap的原理與區別HashMap
- 你真的瞭解HashSet 和HashMap的區別、優缺點、使用場景嗎?HashMap
- Java HashMap 和 HashSet 的高效使用技巧JavaHashMap
- HashMap、LinkedHashMap、HashTable、HashSet筆記HashMap筆記
- 集合框架-HashMap&HashSet&LinkedHshMap框架HashMap
- HashMap、HashTable、ConcurrentHashMap的區別HashMap
- 五分鐘看懂Hashtable原始碼以及與HashMap的區別原始碼HashMap
- HashSet與HashMap比較——新增物件已存在處理方式一樣?HashMap物件
- Java中HashMap,LinkedHashMap,TreeMap的區別[轉]JavaHashMap
- C#中Hashtable和HashMap的區別C#HashMap
- 集合類HashMap,HashTable,ConcurrentHashMap區別?HashMap
- 三,TreeMap和HashMap,TreeSet和HashMap的區別以及方法使用上的不同HashMap
- HashMap與LinkedHashMap型別集合HashMap型別
- java複習之HashMap和Hashtable的區別JavaHashMap
- Java集合系列(三):HashSet、LinkedHashSet、TreeSet的使用方法及區別Java
- HashTable、ConcurrentHashMap、TreeMap、HashMap關於鍵值的區別HashMap
- 好程式設計師Java培訓分享treeset和hashset的區別程式設計師Java
- ??與?:的區別
- const與static的區別
- HTTP 與 HTTPS 的區別HTTP
- getAttribute() 與 attr() 的區別
- @import與<link> 的區別Import
- Postgresql與MySQL的區別MySql
- HashTable與ConcurrentHashMap的區別HashMap
- maven與ant的區別Maven
- __new()__ 與 __init()__的區別
- @Autowired 與@Resource的區別
- gulp與webpack的區別Web
- free 與 CFRelease 的區別
- post與get的區別
- Git與GitHub的區別Github
- Comparable與Comparator的區別
- volatile與synchronized的區別synchronized
- Javascript中“==”與“===”的區別JavaScript
- ICMP與IGMP的區別