What is the difference between Collection and List in Java? When should I use which?
What is the difference between Collection and List in Java? When should I use which?
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.