Consider the following code:
#include <iostream>
struct A {
~A() { std::cout << "~A" << std::endl; }
};
struct B {
~B() { std::cout << "~B" << std::endl; }
};
struct C {
~C() { std::cout << "~C" << std::endl; }
void operator<<(const B &) {}
};
C f(const A &a = A()) {
return C();
}
int main() {
f(A()) << B();
}
Compiling with GCC and running gives the following output:
~C
~A
~B
Is it guaranteed that the destructors for temporary objects of types A, B and C will be called in this order when compiled with other compilers? In general, what is the order of destructor calls for temporaries if there is any?
~C()should be called twice here unless RVO kicks is, no? – user1773602 Dec 11 '12 at 16:19-fno-elide-constructors. – Steve Jessop Dec 11 '12 at 18:03