Hashmap和HashSet的区别


HashSet底层就是基于HashMap实现的

1.Hashmap实现了map接口,HashSet实现了set接口

2.HashMap存储键值对,HashSet仅存储对象

3.HashMap调用Put()存储元素,HashSet调用add()方法添加元素。

相关