What is the difference between Collection and List in Java?

后端 未结 7 1915
无人共我
无人共我 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:31

    Collection is the main interface of Java Collections hierarchy and List(Sequence) is one of the sub interfaces that defines an ordered collection.

提交回复
热议问题