ContactUs :

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What are the main implementations of the List interface ?


The main implementations of the List interface are as follows :
ArrayList : Resizable-array implementation of the List interface. The best all-around implementation of the List interface.
Vector : Synchronized resizable-array implementation of the List interface with additional "legacy methods."
LinkedList : Doubly-linked list implementation of the List interface. May provide better performance than the ArrayList implementation if elements are frequently inserted or deleted within the list. Useful for queues and double-ended queues (deques).

Related Posts Plugin for WordPress, Blogger...
Flag Counter