up vote 27 down vote favorite
10
share [g+] share [fb]

How does the comma operator work in C++?

For instance, if I do:

a = b, c;

Does a end up equaling b or c?

(Yes, I know this is easy to test - just documenting on here for someone to find the answer quickly.)

Update: This question has exposed a nuance when using the comma operator. Just to document this:

a = b, c;    // a is set to the value of b!

a = (b, c);  // a is set to the value of c!

This question was actually inspired by a typo in code. What was intended to be

a = b;
c = d;

Turned into

a = b,    //  <-  Note comma typo!
c = d;
link|improve this question

feedback

6 Answers

up vote 22 down vote accepted

It would be equal to b.

The comma operator has a lower precedence than assignment.

link|improve this answer
feedback

Take care to notice that the comma operator may be overloaded in C++. The actual behaviour may thus be very different from the one expected.

As an example, Boost.Spirit uses the comma operator quite cleverly to implement list initializers for symbol tables. Thus, it makes the following syntax possible and meaningful:

keywords = "and", "or", "not", "xor";

Notice that due to operator precedence, the code is (intentionally!) identical to

(((keywords = "and"), "or"), "not"), "xor";

That is, the first operator called is keywords.operator =("and") which returns a proxy object on which the remaining operator,s are invoked:

keywords.operator =("and").operator ,("or").operator ,("not").operator ,("xor");
link|improve this answer
Umm, you cannot change the precedence though, meaning you should probably put parentheses around your list. – Jeff Burdges Oct 8 '11 at 18:56
1  
@Jeff On the contrary. With a parenthesis around the list this wouldn’t work since then the compiler just sees the comma operator between two char[], which cannot be overloaded. The code intentionally first calls the operator= and then subsequently operator, for each remaining element. – Konrad Rudolph Oct 9 '11 at 11:04
feedback

The comma operator has the lowest precedence of all C/C++ operators. Therefore it's always the last one to bind to an expression, meaning this:

a = b, c;

is equivalent to:

(a = b), c;

Another interesting fact is that the comma operator introduces a sequence point. This means that the expression:

a+b, c(), d

is guaranteed to have its three subexpressions (a+b, c() and d) evaluated in order. This is significant if they have side-effects. Normally compilers are allowed to evaluate subexpressions in whatever order they find fit; for example, in a function call:

someFunc(arg1, arg2, arg3)

arguments can be evaluated in an arbitrary order. Note that the commas in the function call are not operators; they are separators.

link|improve this answer
feedback

The value of a will be b, but the value of the statement will be c. That is, in

d = (a = b, c);

a would be equal to b, and d would be equal to c

link|improve this answer
3  
Almost correct. Statements don't have values, expressions do. The value of that expression is c. – Leon Timmermans Sep 15 '08 at 21:02
feedback

b's value will be assigned to a. Nothing will happen to c

link|improve this answer
feedback

The value of a will be equal to b, since the comma operator has a lower precedence than the assignment operator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.