If we have three functions (foo, bar, and baz) that are composed like so...
foo(bar(), baz())
Is there any guarantee by the C++ standard that bar will be evaluated before baz?
|
|
|
No, there's no such guarantee. Bjarne Stroustrup says it explicitly in "The C++ Programming Language" 3rd edition section 6.2.2 He also gives a reason:
Although technically this refers to an earlier part of the same section which says that the order of evaluation of parts of an expression are also undefined, i.e.
|
|||
|
|
There's no specified order for bar() and baz() - the only thing the Standard says is that they will both be evaluated before foo() is called. From the C++ Standard, section 5.2.2/8:
|
||||
|
|
|
From [5.2.2] Function call,
Therefore, there is no guarantee that Also note from [5] Expressions that:
so even if you were asking whether |
|||||
|