Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
share|improve this question
Read more about it here. stackoverflow.com/questions/12824378/… – Coding Mash Dec 14 '12 at 15:54

7 Answers

up vote 32 down vote accepted

It would be equal to b.

The comma operator has a lower precedence than assignment.

share|improve this answer

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");
share|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
7  
@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

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.

share|improve this answer

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

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

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

share|improve this answer

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

share|improve this answer

First things first: Comma is actually not an operator, for the compiler it is just a token which gets a meaning in context with other tokens.

What does this mean and why bother?

Example 1:

To understand the difference between the meaning of the same token in a different context we take a look at this example:

class Example {
   Foo<int, char*> ContentA;
}

Usually a C++ beginner would think that this expression could/would compare things but it is absolutly wrong, the meaning of the <, > and , tokens depent on the context of use.

The correct interpretation of the example above is of course that it is an instatiation of a template.

Example 2:

When we write a typically for loop with more than one initialisation variable and/or more than one expressions that should be done after each iteration of the loop we use comma too:

for(a=5,b=0;a<42;a++,b--)
   ...

The meaning of the comma depends on the context of use, here it is the context of the for construction.

What does a comma in context actually mean?

To complicate it even more (as always in C++) the comma operator can itself be overloaded (thanks to Konrad Rudolph for pointing that out).

To come back to the question, the Code

a = b, c;

means for the compiler something like

(a = b), c;

because the priority of the = token/operator is higher than the priority of the , token.

and this is interpreted in context like

a = b;
c;

(note that the interpretation depend on context, here it it neither a function/method call or a template instatiation.)

share|improve this answer
This is wrong. Comma is an operator in C++ – xryl669 May 14 at 9:18
sure it is, maybe i used the wrong terminology (for the lexer it is a token, sure) – Quonux May 15 at 6:23
should i look up for every question the c++/anywhat standard??? – Quonux May 15 at 6:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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