HashSet
底层是由HashMap来存储的
允许有NULL值
性质:不重复、无序
不重复:因为HashMap的键不能重复
无序:没有索引,list的所有包含索引的方法set不适用
没有的方法:
1.遍历:没有普通for循环,有加强型for和迭代器遍历
2.
get(i);
set(int index, Object o);
remove(int index);
有的方法:
1.增
add(null);
2.删
remove(news);
3.查
contains(news);
4.清空集合
clear();
5.获取长度
size();
HashMap
增
put()
putAll(map)
删
remove()
改
put()
查
get(key)
遍历
entrySet():得到Map.Entry类型的entry的set集合,可以getKey()、getValue()
keySet():得到key的set集合,得到key,和getKey()