Difference between Set, List and Map ? - TestingQ.com

-->Exclusive Portal for Testing Jobs

Difference between Set, List and Map ?

Set (Interface)
1) Set is an un-ordered collection which doesn’t allows duplicate (no-duplicate) elements
2) We can iterate the values by calling iterator() method

Set s = new HashSet();
Iterator iter = s.iterator();

List (Interface)
1) List is an ordered collection which allows duplicate elements
2) We can iterate the values by calling iterator() method

List li = new ArrayList();
Iterator iter = li.iterator();

Map (Interface)
1) In Map we used to store the data in key and value pairs, we may have duplicate values but no duplicate keys
2) In Map we don’t have iterator() method, but we can get the keys by calling the method keySet()

Map m; // insert values
Set s = m.keySet();
// Get Map keys into the Set and then iterate this Set object normally
// m.keySet() returns Set object with Map keys
Iterator iter = s.iterator();



To receive daily posted JOBS & Interview Questions
Just enter your email address below and click 'Submit'
Enter your email address:

Make sure to activate your subscription by clicking on the activation link sent to your email