Yes, the order of construction is always guaranteed. It is not, however, guaranteed to be the same as the order in which the objects appear in the initializer list.
Member variables are constructed in the order in which they are declared in the body of the class. For example:
struct A { };
struct B { };
struct S {
A a;
B b;
S() : b(), a() { }
};
a
is constructed first, then b
. The order in which member variables appear in the initializer list is irrelevant.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…