What does the ',' operator do in C?
|
|
|||||
|
|
|
The expression:
First expression1 is evaluated, then expression2 is evaluated, and the value of expression2 is returned for the whole expression. |
||
|
|
|
|
It causes the evaluation of multiple statements, but uses only the last one as a resulting value (rvalue, I think). So...
should result in x being set to 8. |
||
|
|
|
|
As earlier answers have stated it evaluates all statements but uses the last one as the value of the expression. Personally I've only found it useful in loop expressions:
|
||
|
|
|
|
The only place I've seen it being useful is when you write a funky loop where you want to do multiple things in one of the expressions (probably the init expression or loop expression. Something like:
Pardon me if there are any syntax errors or if I mixed in anything that's not strict C. I'm not arguing that the , operator is good form, but that's what you could use it for. In the case above I'd probably use a |
|||
|
|
I've seen used most in
string s;
while(read_string(s), s.len() > 5)
{
//do something
}
It will do the operation, then do a test based on a side-effect. The other way would be to do it like this:
string s;
read_string(s);
while(s.len() > 5)
{
//do something
read_string(s);
}
|
||||
|
|
|
The comma operator combines the two expressions either side of it into one, evaluating them both in left-to-right order. The value of the right-hand side is returned as the value of the whole expression.
It is often seen in
Apart from this, I've only used it "in anger" in one other case, when wrapping up two operations that should always go together in a macro. We had code that copied various binary values into a byte buffer for sending on a network, and a pointer maintained where we had got up to:
Where the values were
Later we read that this was not really valid C, because
However, this approach relied on all developers remembering to put both statements in all the time. We wanted a function where you could pass in the output pointer, the value and and the value's type. This being C, not C++ with templates, we couldn't have a function take an arbitrary type, so we settled on a macro:
By using the comma operator we were able to use this in expressions or as statements as we wished:
I'm not suggesting any of these examples are good style! Indeed, I seem to remember Steve McConnell's Code Complete advising against even using comma operators in a |
||||
|
