Loading

Hashmap和HashSet的区别

HashSet底层就是基于HashMap实现的

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

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

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

posted @ 2022-03-16 16:01  远乡人  阅读(84)  评论(0)    收藏  举报