in Technology by
What is the difference between List and Set in JAVA?

1 Answer

0 votes
by

The List and Set both extend the collection interface. However, there are some differences between them both which are listed below.

  • The List can contain duplicate elements whereas Set includes unique items.
  • The List is an ordered collection that maintains the insertion order whereas Set is an unordered collection that does not preserve the insertion order.
  • The List interface contains a single legacy class which is the Vector class whereas the Set interface does not have any legacy class.
  • The List interface can allow n number of null values whereas the Set interface only allows a single null value.

Related questions

0 votes
    What is the difference between Set and Map in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the difference between a library and a list in Azure?...
asked Dec 29, 2020 in Technology by JackTerrance
0 votes
    What is the difference between del() and remove() methods of list?...
asked Nov 26, 2020 in Technology by JackTerrance
0 votes
    There are two different methods for accessing the element of a list or data frame- [ ] and [[ ]] , ... the difference between them? Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    Can Someone Please tell me the difference between list methods append() and extend() in Python? Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    What is the difference between a tuple and a list? (5 marks) Select the correct answer from above options...
asked Nov 29, 2021 in Education by JackTerrance
0 votes
0 votes
    What is the difference between the length of an Array and size of ArrayList in Java?...
asked May 27, 2021 in Technology by JackTerrance
0 votes
    What is the difference between Collection and Collections in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the difference between HashMap and Hashtable in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the difference between HashMap and TreeMap in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the difference between HashSet and HashMap in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the difference between HashSet and TreeSet in JAVA?...
asked May 26, 2021 in Technology by JackTerrance
0 votes
    What is the Main difference between Iterator and Enumeration in JAVA?...
asked May 18, 2021 in Technology by JackTerrance
0 votes
    Difference between Core Java and Advance Java?...
asked Dec 21, 2020 in Technology by JackTerrance
...