java中的常用的collection接口和map接口

Collection接口

List接口

  • ArrayList
  • LinkedList
  • Vector

Set接口

  • HashSet
  • TreeSet

Queue接口

  • PriorityQueue

Map 接口

  • HashMap
  • HashTable
  • TreeMap

猜你喜欢

转载自blog.csdn.net/k3108001263/article/details/82082374