Java集合:Collection(List、Set)、Map

版权声明:转载请标明出处,谢谢~ https://blog.csdn.net/wwtqq/article/details/82965595

Collection

Set 不重复  不能存放重复数据  存放对象引用地址

  • hashSet  hash结构  无序  查询快速
  • TreeSet  树结构  有序
  • LinkedHashSet  有序  链表结构  查询快速

List 有序  可以重复

  • ArrayList  底层为长度可变数组
  • LinkedList  链表结构   插入、删除速度快  查询慢

Map

  • HashMap   “散列码”(hash code)
  • TreeMap
  • LinkedHashMap

猜你喜欢

转载自blog.csdn.net/wwtqq/article/details/82965595