5
votes
Is there a performance difference between a for loop and a for-each loop?
All these loops do the exact same, I just want to show these before throwing in my two cents.
First, the classic way of looping through List:
for(int i=0;i<strings.size() …
