I would like to increment two 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
|
|||||||||
|
|
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 variables is bug prone, espcially if you only test for one of them. This is the readable way to do this:
If you need
If your logic is more complex (for example, you need to actually monitor more than one variable), I'd use a |
|||||
|
|
|||||||||
|