Being somewhat new to the Java language I'm trying to familiarize myself with all the ways (or at least the non-pathological ones) that one might iterate through a list (or perhaps other collections) and the advantages or disadvantages of each.
…
Looking through some old company code, I came across a for loop that looks like this:
for (;;) {
//Some stuff
}
I tried Google but couldn't find any answers. Did I fall asleep in a programming class or is this an unusual …