Is it slower to iterate through a list in Java like this:
for (int i=0;i
as opposed to:
There shouldn't be any noticeable differences in performance for normal lists.
For linked lists, the iterator will be substantially faster, especially for large lists.