user1150105
user1150105

Reputation:

Ordering in an initialization in C, C++

Consider the following initializations:

/* C, C++ */
int a[] = { f(), g() };
struct { int x, y } foo = { f(), g() };

/* C++ */
struct goo { goo(int x, int y);  };

goo b = { f(), g() };
goo c { f(), g() };    /* C++11 */
goo d ( f(), g() );

Is the order of execution f() and g() in any line specified by C and C++ standards?

Upvotes: 18

Views: 1043

Answers (4)

iavr
iavr

Reputation: 7637

In C++11, the relevant part is paragraph 4 of 8.5.4 List-initialization

Within the initializer-list of a braced-init-list, the initializer-clauses, including any that result from pack expansions (14.5.3), are evaluated in the order in which they appear. That is, every value computation and side effect associated with a given initializer-clause is sequenced before every value computation and side effect associated with any initializer-clause that follows it in the comma-separated list of the initializer-list. [ Note: This evaluation ordering holds regardless of the semantics of the initialization; for example, it applies when the elements of the initializer-list are interpreted as arguments of a constructor call, even though ordinarily there are no sequencing constraints on the arguments of a call. — end note ]

So the order of evaluation is left-to-right.

However note that unfortunately, due to a bug since at least version 4.7.0, GCC evaluates in the opposite order, right-to-left. So if you get any unexpected results, this may be a reason.

Upvotes: 2

haccks
haccks

Reputation: 106012

Is the order of execution f() and g() in any line specified by C and C++ standards?

In C, No. They can evaluate in any order.

C11 6.7.9 Initialization

The evaluations of the initialization list expressions are indeterminately sequenced with respect to one another and thus the order in which any side effects occur is unspecified,152).

While C++11 says that the order of evaluation is deterministic.

8.5.4:4 List-initialization

Within the initializer-list of a braced-init-list, the initializer-clauses, including any that result from pack expansions (14.5.3), are evaluated in the order in which they appear. That is, every value computation and side effect associated with a given initializer-clause is sequenced before every value computation and side effect associated with any initializer-clause that follows it in the comma-separated list of the initializer-list.


152) In particular, the evaluation order need not be the same as the order of subobject initialization.

Upvotes: 11

Vlad from Moscow
Vlad from Moscow

Reputation: 310980

In all these two cases

goo b = { f(), g() };
goo c { f(), g() };    /* C++11 */

the order of evaluation is determined from left to right and all side effects shall be applied before the next initializer.

From the C++ STandard

4 Within the initializer-list of a braced-init-list, the initializer-clauses, including any that result from pack expansions (14.5.3), are evaluated in the order in which they appear. That is, every value computation and side effect associated with a given initializer-clause is sequenced before every value computation and side effect associated with any initializer-clause that follows it in the comma-separated list of the initializer-list.

However in C there is other rule

The evaluations of the initialization list expressions are indeterminately sequenced with respect to one another and thus the order in which any side effects occur is unspecified.

Upvotes: 21

ouah
ouah

Reputation: 145829

No, in C the order of evaluation of the initializers is unspecified:

(C11, 6.7.9p23) "The evaluations of the initialization list expressions are indeterminately sequenced with respect to one another and thus the order in which any side effects occur is unspecified.152)"

152) In particular, the evaluation order need not be the same as the order of subobject initialization.

In C++ the behavior is different, and the initializers are evaluated in the order in which they appear (C++11, 8.5.4p4).

Upvotes: 2

Related Questions