What is the difference between Collection and List in Java?

后端 未结 7 1911
无人共我
无人共我 2020-12-04 04:49

What is the difference between Collection and List in Java? When should I use which?

7条回答
  •  情深已故
    2020-12-04 05:21

    Collection is the root interface to the java Collections hierarchy. List is one sub interface which defines an ordered Collection, other sub interfaces are Queue which typically will store elements ready for processing (e.g. stack).

    The following diagram demonstrates the relationship between the different java collection types:

提交回复
热议问题