HashSet

HashSet实现了接口Set, Cloneable, java.io.Serializable,继承了AbstractSet;其底层完全是基于HashMap实现;HashSet的key不能重复,基于hashMap的key进行实现。

你可能感兴趣的:(HashSet)