I would like to increment 2 variables in a for-loop condition instead of one.
So something like:
for(int i = 0, i != 5; ++i and ++j) do_something(i,j);
What is the syntax for this?
|
|
|
|
|
|
|
Try this
|
||||
|
|
|
for(int i = 0, i != 5; ++i, ++j) do_something(i,j); |
||
|
|
|
|
|
||||
|
|
|
A common idiom is to use the comma operator which evaluates both operands, and returns the second operand. Thus:
But is it really a comma operator?Now having wrote that, a commenter suggested it was actually some special syntactic sugar in the for statement, and not a comma operator at all. I checked that in GCC as follows:
I was expecting x to pick up the original value of a, so it should have displayed 5,6,7.. for x. What I got was this
However, if I bracketed the expression to force the parser into really seeing a comma operator, I get this
Initially I thought that this showed it wasn't behaving as a comma operator at all, but as it turns out, this is simply a precedence issue - the comma operator has the lowest possible precedence, so the expression x=i++,a++ is effectively parsed as (x=i++),a++ Thanks for all the comments, it was an interesting learning experience, and I've been using C for many years! |
||||||||||||||
|
|
|
Try not to do it! From http://www.research.att.com/~bs/JSF-AV-rules.pdf:
|
||
|
|
|
|
I agree with squelart, incrementing two variable is bug prone, espcially if you only test for one of them.
Is the readable way to do this. For loops are meant for cases where your loop runs on one increasing/decreasing variable. Any other variable, change it in the loop. If you need j to be tied to i, why not leave the original variable as is and add i?
If your logic is more complex (e.g. you need to actually monitor more than one variable), I'd use a while loop. |
||
|