Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

According to this precedence table, the comma operator is left-associative. That is, a, b, c is parsed as (a, b), c. Is that a necessity? Wouldn't a, (b, c) have the exact same behavior?

share|improve this question
2  
What if a, b and c are of different types, and each overloads , which returns a type which overloads , too? (a,b),c would not be same as a,(b,c). – Nawaz Dec 23 '12 at 11:36
How is your comment different from @Pubby's answer? – FredOverflow Dec 23 '12 at 11:40
1  
Not necessarily. Also, I didn't come later. Just didn't refresh the page. – Nawaz Dec 23 '12 at 11:44
4  
@AlexisWilke: You're wrong. In C++, the order of function arguments evaluation is not specified. So they can be evaluated in any order. – Nawaz Dec 23 '12 at 11:47
2  
Why would they be equivalent? Not even (a + b) + c and a + (b + c) are guaranteed to be equivalent. (They aren't in floating-point arithmetic for accuracy reasons, and in some exotic number systems they aren't even supposed to). – leftaroundabout Dec 23 '12 at 12:08
show 8 more comments

1 Answer

Since overloadable operator, exists, no, it's not the same behavior. a, (b, c) could call different overloads than (a, b), c.

share|improve this answer

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.