If you are writing a simple little loop, what should you name the counter?
Provide example loops!
|
If you are writing a simple little loop, what should you name the counter? Provide example loops! |
|||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
1) For normal old style small loops - i, j, k - If you need more than 3 level nested loops, this means that either the algorithm is very specific and complex, either you should consider refactoring the code. Java Example:
2) For the new style java loops like Java Example:
3) If it is possible with the language you use, convert the loop to use iterator Java Iterator Example: click here |
|||||||||
|
|
I always use a meaningful name unless it's a single-level loop and the variable has no meaning other than "the number of times I've been through this loop", in which case I use When using meaningful names:
Example - spot the bugIt can be tricky to find the bug in this nested loop using single letters:
whereas it is easier when using meaningful names:
Why
|
|
I find the first to be more readable. The longer names (especially the "_num" everywhere) just adds to the visual clutter. – Derek Park Sep 19 '08 at 23:45 |
||
I think your example it poor, because the problem is not with the index variables. The problem is with the loop conditions. If you're looking at the wrong piece of code (index names in this case), you're not going to find the problem, regardless of how you name things. – Derek Park Sep 19 '08 at 23:46 |
|||
|
Why not abbreviate row_num to r and col_num to c? The meaning of the variable is just as clear to a casual reader, and you don't have so much visual clutter to deal with. – Pitarou Sep 20 '08 at 21:40 |
||
|
I think Petr K and Derek haven't maintained other people's code very much. The second example is a lot easier to read and, more importantly, understand. Do some maintenance programming for a while and you'll long for meaningful variable names. – Onorio Catenacci Sep 24 '08 at 13:20 |
||
|
Paul: you got my vote, i totally agree with your convention.using i & j you having to examine the way its used in the loop to find the bug (context). with *_num you can see the potential bug without the context. i & j can also be easily confused, as sometimes you do row major and other column major – mattlant Sep 27 '08 at 2:12 |
Examples: . . . In JavaNon-Iterative Loops:
Iterative Loops:
|
||||
|
|
|
Always try to name the variable something meaningful and in context. If you cannot decide, then use "index", if only so that someone else (maybe you!) can more easily click on it for refactoring later. Paul Stephenson See this answer for an example. |
|||||||
|
|
my experience is that most people use single letters, e.g.:
but i learned a great alternative a long time ago, and have used it ever since: double letter variables.
in case the benefit isn't immediately obvious: searching through code for any single letter will find many things that aren't what you're looking for. the letter |
|||||||||||||||||||
|
|
I use i, j, k (or r & c for row-column looping). If you need more than three loop variables in a method, the the method is probably too long and complex and your code would likely benefit from splitting the method up into more methods and naming them properly. |
|||
|
|
|
I use single letters only when the loop counter is an index. I like the thinking behind the double letter, but it makes the code quite unreadable. |
|||
|
|
|
if I have a nested loop then also This convention is so common that if you manage to come across a variable |
|||
|
|
|
If the counter is to be used as an index to a container, I use If it is to be used to iterate over a range (or perform a set number of iterations), I often use In languages which provide a
I think some people will tell me off for naming |
|||||||
|
|
Steve McConnell's Code Complete has, as usual, some excellent advice in this regard. The relevant pages (in the first edition anyway) are 340 and 341. Definitely advise anyone who's interested in improving their loop coding to give this a look. McConnell recommends meaningful loop counter names but people should read what he's got to say themselves rather than relying on my weak summary. |
|||
|
|
|
Like a previous poster, I also use ii, jj,.. mainly because in many fonts a single i looks very similar to 1. |
|||||||||||||||||
|
|
I use "counter" or "loop" as the variable name. Modern IDEs usually do the word completion , so longer variable names are not as tedious to use. Besides , to name the variable to its functionality makes it clear to the programmer who is going to maintain your code as to what your intentions were. |
|||
|
|
|
The first rule is that the length of the variable name should match the scope of the variable. The second rule is that meaningful names make bugs more shallow. The third rule is that if you feel like adding comment to a variable name, you chose the wrong variable name. The final rule is do as your teammates do, so long as it does not counteract the prior rules. |
|||
|
|
@JustMike . . . A FEW C EXAMPLES: . . . to accompany the Java ones. NON-NESTED loop: . . . limiting scope where possible
One good thing about this layout is it reads badly without comments, thereby encouraging them. |
||||
|
|
|
Whatever you choose, use the same index consistently in your code wherever it has the same meaning. For example, to walk through an array, you can use
The best practice is to make this part of the loop look the same throughout your code (including consistently using Similarly, if you're walking through an 2d array of pixels, for example, you might write
Just do it the same way in every place that you write this type of loop. You want your readers to be able to ignore the boring setup and see the brilliance of what you're doing in the actual loop. |
|||
|
|
|
I have long used the i/j/k naming scheme. But recently I've started to adapt a more consequent naming method. I allready named all my variables by its meaning, so why not name the loop variable in the same deterministic way. As requested a few examples: If you need to loop trough a item collection.
But i try to avoid the normal for loops, because I tend to want the real item in the list and use that, not the actual position in the list. so instead of beginning the for block with a:
I try to use the foreach construct of the language. which transforms the.
into
Which makes it easier to read because only the real meaning of the code is expressed (process the items in the list) and not the way we want to process the items (keep an index of the current item en increase it until it reaches the length of the list and thereby meaning the end of the item collection). The only time I still use one letter variables is when I'm looping trough dimensions. But then I will use x, y and sometimes z. |
||||
|
|
|
i also use the double-letter convention. ii, jj, kk. you can grep those and not come up with a bunch of unwanted matches. i think using those letters, even though they're doubled, is the best way to go. it's a familiar convention, even with the doubling. there's a lot to say for sticking with conventions. it makes things a lot more readable. |
||||
|
|
|
I've started using perlisms in php. if its a singular iteration, |
|||
|
|
|
If it is a simple counter, I stick to using 'i' otherwise, have name that denotes the context. I tend to keep the variable length to 4. This is mainly from code reading point of view, writing is doesn't count as we have auto complete feature. |
|||
|
|
Perl standardIn Perl, the standard variable name for an inner loop is $_. The for, foreach, and while statements default to this variable, so you don't need to declare it. Usually, $_ may be read like the neuter generic pronoun "it". So a fairly standard loop might look like:
In English, that translates to:
Even more common, however, is to not use a variable at all. Many Perl functions and operators default to $_:
In English:
This also is the standard for counters. (But counters are used far less often in Perl than in other languages such as C). So to print the squares of integers from 1 to 100:
Since only one loop can use the $_ variable, usually it's used in the inner-most loop. This usage matches the way English usually works:
In Perl:
As above, it's best to use longer, descriptive names in outer loops, since it can be hard to remember in a long block of code what a generic loop variable name really means. Occasionally, it makes sense to use shorter, non-descriptive, generic names such as $i, $j, and $k, rather than $_ or a descriptive name. For instance, it's useful to match the variables use in a published algorithm, such as cross product. |
|||
|
|
|
I've started to use context-relevant loop variable names mixed with hungarian. When looping through rows, I'll use |
||||
|
|
|
for numerical computations, matlab, and the likes of it, dont use i, j these are reserved constants, but matlab wont complain. My personal favs are index first,second counter count |
|||
|
|
|
My favorite convention for looping over a matrix-like set is to use x+y as they are used in cartesian coordinates:
|
|||
|
|
|
I usually use:
|
|||
|
|
For integers I use int index, unless it's nested then I use an Index suffix over what's being iterated like int groupIndex and int userIndex. |
|||
|
|
|
In Python, I use i, j, and k if I'm only counting times through. I use x, y, and z if the iteration count is being used as an index. If I'm actually generating a series of arguments, however, I'll use a meaningful name. |
|||
|
|
|
Using for n in boxes instead of for box in boxes seems a good idea to me. Its visually clearer to use for n in boxes, err n.print() is very concise, the contextual nature and importance of n is displayed properly. It doesnt interfere (or visually disturb) the standard "one letter reference" err t = new Table() and then t.length = 2000; etc (here the t "reference" is meant to be outside of the loop). Also n.print() is unlikely to collide in "lexical scopes". However, the next "convention" is non-standard but it works for us: i as enumerated index eg entries[i]; q as named "queries" eg recipes[q]; n for object eg n.print() for nested loops we use ii, qq, nn and for the third loop iii, qqq, nnn. If we need multiple i the iRow, iColumn etc convention is used instead. |
|||
|
|