vote up 3 vote down star

After reading this article on Herb Sutter's blog, I experimented a bit and ran into something that puzzles me. I am using Visual C++ 2005, but I would be surprised if this was implementation dependent.

Here is my code:

#include <iostream>

using namespace std;

struct Base {
    //Base() {}
    ~Base() { cout << "~Base()" << endl; }
};

int main()
{
    const Base & f = Base();
}

When run, it displays "~Base()" twice... But if I un-comment the constructor, it displays it only once!

Does anyone have an explanation for this?

flag

67% accept rate

2 Answers

vote up 13 vote down check

This IS implementation dependent.

The standard allows a copy to occur when binding a temporary to a const reference. In your case, VC++ performs a copy only when the constructor is implicitly defined. This is unexpected, but permitted.

C++1x will fix this.

link|flag
Amazing answer, thanks a lot Sir :) – Drealmer Apr 17 at 14:20
Interesting. Will this result in object slicing in some cases? – John Dibling Apr 17 at 14:21
"C++1x will fix this." oh dear, is that what they're calling the next standard now or is this a witty joke? – veefu Apr 17 at 14:23
Can you point to where in the standard the copy is allowed? – dribeas Apr 17 at 14:34
where in the standard is this? – jalf Apr 17 at 14:53
show 3 more comments
vote up 0 vote down

Im using mingw 3.14 gcc 3.4.5 and my objects are not being copied with or without constructors. any idea why? Would this cause the program to be memory-unsafe?

link|flag
1  
In this case the compiler is allowed to completely elide the copy - it is not a problem, in fact itt is desirable behaviour. – Neil Butterworth Aug 9 at 9:28
Exactly what I was hoping to hear! Thanks for the clarification. – amado Aug 10 at 23:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.