if you are writing a simple little loop, what should you name the counter?
provide example loops!
|
1
|
if you are writing a simple little loop, what should you name the counter? provide example loops! |
|||
|
|
|
|
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 |
||||||||||
|
|
|
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. |
||||||
|
|
|
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. |
||
|
|
|
|
I've started using perlisms in php. if its a singular iteration, |
||
|
|
|
|
My habit is to use 't' - close to 'r' so it follows easily aftewr typing 'for' |
||
|
|
|
|
if I have a nested loop then also This convention is so common that if you manage to come across a variable |
||
|
|
|
|
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 |
||||||
|
|
|
Like a previous poster, I also use ii, jj,.. mainly because in many fonts a single i looks very similar to 1. |
||||||||||
|
|
|
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 |
||||
|
|
|
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. |
||
|
|
|
|
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 | |
| The problem is not with the index variables, but I think a new code reader is less likely to spot that there is a bug in the first example. In the second, the expression "row_num < MAX_COLS" should definitely set alarm bells ringing, even with a casual browse through the code. – Paul Stephenson Sep 20 '08 at 8:30 | |
| 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. – dysfunctor Sep 20 '08 at 21:40 | |
| and of course even better would be: rr and cc! ;-) – just mike Sep 21 '08 at 0:47 |
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
Examples: . . . In JavaNon-Iterative Loops:
Iterative Loops:
|
|||
|
|
|
|
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. |
||
|
|
|
|
@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. |
|||
|
|
|
|
I use i, ii, iii, iv, v ... Never got higher than iii, though. |
||
|
|
|
|
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. |
||
|
|
|
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'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:
|
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I usually use:
|
||
|
|
|
i also use the double-letter convention. ii, jj, kk. 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. |
||
|
|
|
|
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. |
||
|
|