What is the difference between Collection and List in Java?

Viewed 133424

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

7 Answers

List and Set are two subclasses of Collection.

In List, data is in particular order.

In Set, it can not contain the same data twice.

In Collection, it just stores data with no particular order and can contain duplicate data.

Related