When I compile the following code with g++, the object of class A seems not to be destructed when the object of class C is constructed, and the B.ref_a reference is not broken when accessed by the constructor of object of class C:
#include <iostream>
struct A
{
A(int aa)
{
a = aa;
}
~A()
{
std::cout << "A out" << std::endl;
}
int a;
};
struct B
{
B(const A& a)
: ref_a(a)
{
}
~B()
{
std::cout << "B out" << std::endl;
}
const A& ref_a;
};
struct C
{
C(const B& b)
{
c = b.ref_a.a + 1;
}
int c;
};
int main(void)
{
C c(B(A(1)));
std::cout << c.c << std::endl;
}
However, is it guaranteed by the C++ language?

Bshould be destructed beforeA, not after. The reason is that the constructor ofBfinishes after that ofA. And destruction order is always the reverse of construction order. What compiler do you use that destructs it afterwards? – Johannes Schaub - litb Oct 19 at 14:24Bfinishes after that ofAcan be seen by looking at the implicit constructor function call ofB(...). The temporaryA(1)is an argument to that function call, and evaluation of function arguments should be complete before the function call is actually done (there is a sequence point before the function is entered). This unambiguously sequences the construction order toA -> B -> C, and thus the destruction order has to beB -> A(withCdestructed at the end ofmain). – Johannes Schaub - litb Oct 19 at 14:31Atemporaries are destructed in reverse together, after all ofBtemporaries are destructed in reverse together. If you put on optimization, you will usually see only oneA, and only oneBobject being created though. – Johannes Schaub - litb Oct 19 at 14:32Atemporaries. This is allowed: Binding a temporary to a const reference may copy the temporary before binding the const reference to the final temporary). C++0x disallowed that copying when binding a const reference to a temporary (rvalue, here), and only oneA,BandCobject will exist in total. – Johannes Schaub - litb Oct 19 at 14:39