Possible Duplicate:
Why are we using i as a counter in loops?
In Java, I commonly have snippets of code similar to:
for (int i = 0; i < someLimit; i++) {
// some relatively simple and short code to iterate
}
In fact, I rarely name the loop variable as anything other than "i" except for complex for-loops where I use the loop variable inside the loop repeatedly.
I'm accustomed to naming variables descriptively, but I haven't seen or been taught to name the for-loop variable.
Is leaving the for-loop variable named as "i" a bad practice?