difference between list vs set vs map in java

Solutions on MaxInterview for difference between list vs set vs map in java by the best coders in the world

showing results for - "difference between list vs set vs map in java"
Fleur
20 Mar 2019
1Set is unordered
2List is ordered collection, 
3List allow duplicate elements
4Set does not allow duplicates.
5List can have multiple null elements
6Set will allow only one null element.
7The List can contain duplicate elements
8Set includes unique items.