이경수 선생님의 수학실험실

[Java] Class HashSet 본문

Programming

[Java] Class HashSet

(이경수) 2019. 5. 18. 23:31

Class HashSet

https://docs.oracle.com/javase/7/docs/api/java/util/HashSet.html

 

HashSet (Java Platform SE 7 )

This class implements the Set interface, backed by a hash table (actually a HashMap instance). It makes no guarantees as to the iteration order of the set; in particular, it does not guarantee that the order will remain constant over time. This class permi

docs.oracle.com

 

'Programming' 카테고리의 다른 글

[Java] Class ArrayList  (0) 2019.05.19
[Java] Class BigInteger  (0) 2019.05.19
[Java] Class Collections  (0) 2019.05.15
[Java] conversion  (0) 2019.05.15
[Python] Built-in Functions  (0) 2019.05.12
Comments