Which one is faster Array or List in Java



The array is faster in case of access to an element while List is faster in case of adding/deleting an element from the collection.


Advertisements