Is there an elegant way to skip the first iteration in a Java5 foreach loop ?
Example pseudo-code:
for ( Car car : cars ) { //skip if first, do w
for (Car car : cars) { if (car == cars[0]) continue; ... }
Elegant enough for me.