安静冬瓜

文章
6
资源
0
加入时间
2年11月11天

7,HashMap

一,HashMap简介 1,HashMap 是一个散列表,它存储的内容是键值对(key-value)映射。 2,HashMap 继承于AbstractMap,实现了Map、Cloneable、java.io.Serializable接口。 3,HashMap 的实现不是同步的。它的key、value都可以为null。此外,HashMap中的映射不是有序的。 4,HashMap ...