What is the difference between Collection and List in Java?

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

    Collection is the Super interface of List so every Java list is as well an instance of collection. Collections are only iterable sequentially (and in no particular order) whereas a List allows access to an element at a certain position via the get(int index) method.

提交回复
热议问题