Answers for "difference between list ,map and set in java"

5

difference between list vs set vs map in java

Set is unordered
List is ordered collection, 
List allow duplicate elements
Set does not allow duplicates.
List can have multiple null elements
Set will allow only one null element.
The List can contain duplicate elements
Set includes unique items.
Posted by: Guest on December-05-2020

Code answers related to "difference between list ,map and set in java"

Browse Popular Code Answers by Language