In C++, does the following have undefined behaviour:
int i = 0;
(i+=10)+=10;
There was some debate about this in the comments to my answer to What's the result of += in C and C++? The subtlety here is that the default response seems to be "yes", whereas it appears that the correct answer is "it depends on the version of the C++ standard".
If it does depend on the version of the standard, please explain where it's UB and where it's not.
tl;dr: The sequence of the modifications and reads performed in
(i+=10)+=10
is well defined in both C++98 and C++11, however in C++98 this is not sufficient to make the behavior defined.In C++98 multiple modifications to the same object without an intervening sequence-point results in undefined behavior, even when the order of those modifications is well specified. This expression does not contain any sequence points and so the fact that it consists of two modifications is sufficient to render its behavior undefined.
C++11 doesn't have sequence points and only requires that the modifications of an object be ordered with respect to each other and to reads of the same object to produce defined behavior.
Therefore the behavior is undefined in C++98 but well defined in C++11.
C++98
C++98 clause [expr] 5 p4
C++98 clause [expr.ass] 5.17 p1
So I believe the order is specified, however I don't see that that alone is enough to create a sequence point in the middle of an expression. And continuing on with the quote of [expr] 5 p4:
So even though the order is specified it appears to me that this is not sufficient for defined behavior in C++98.
C++11
C++11 does away sequence points for the much clearer idea of sequence-before and sequenced-after. The language from C++98 is replaced with
C++11 [intro.execution] 1.9 p15
C++11 [expr.ass] 5.17 p1
So while being ordered was not sufficient to make the behavior defined in C++98, C++11 has changed the requirement such that being ordered (i.e., sequenced) is sufficient.
(And it seems to me that the extra flexibility afforded by 'sequence before' and 'sequenced after' has lead to a much more clear, consistent, and well specified language.)
It seems unlikely to me that any C++98 implementation would actually do anything surprising when the sequence of operations is well specified even if that is insufficient to produce technically well defined behavior. As an example, the internal representation of this expression produced by Clang in C++98 mode has well defined behavior and does the expected thing.
Maybe. It depends on C++ version.
In C++03, it's an obvious UB, there's no intervening sequence point between the assignments.
In C++11, as Mankarse explains, it's not undefined anymore — the parenthesized compound assignment is sequenced before the outer one, so it's okay.
In C++11 the expression is well defined and will result in
i == 20
.From
[expr.ass]/1
:This means that the assignment
i+=1
is sequenced before the value computation of the left hand side of(i+=10)+=10
, which is in turn sequenced before the final assignment toi
.In C++03 the expression has undefined behavior, because it causes
i
to be modified twice with no intervening sequence point.