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?
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.
|
|
|||
| show 8 more comments |
|
Since overloadable |
|||
|
|
a,bandcare of different types, and each overloads,which returns a type which overloads,too?(a,b),cwould not be same asa,(b,c). – Nawaz Dec 23 '12 at 11:36(a + b) + canda + (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