Re: Default param, is this legal
Simon <bad@example.com>, on 14/07/2010 15:07:55, wrote:
I am really sorry that this group is so agressive that it could not
answer my original post.
Your question has already been answered, I'm sorry that you're taking it
that bad: this group isn't that aggressive as you feel, please read
again all the posts (including your replies) and draw your conclusions.
I am not taking it 'this bad', (I am not sure what you mean by that
anyway, it is a very subjective statement).
OK, let's drop all sparkles, so that this discussion can come back to a
normal tone instead of pushing it towards a real flamewar.
Some of us (myself included) overreacted to the fact that you posted
non-compliant code - apparently, you discovered it during this thread -
on the other side, I believe you overreacted to our replies.
So far, I'm the only one who apologized for his mistakes, but that
doesn't really make any difference.
About the question in your original post, I cannot speak for the
standard, but I can make a test:
//-------
#include <iostream>
struct Test {
Test() {
std::cout << "create" << std::endl;
}
~Test() {
std::cout << "destroy" << std::endl;
}
static const Test& GetTest(const Test& t = Test()) {
return t;
}
};
int main() {
{
const Test& t = Test::GetTest();
std::cout << "about to exit scope" << std::endl;
}
{
const Test& t = Test::GetTest();
std::cout << "about to exit scope" << std::endl;
}
}
//-------
The above produces the following output on my computer:
//-------
create
destroy
about to exit scope
create
destroy
about to exit scope
//-------
According to what I see above, the object gets destroyed right after the
end of the call to that static function, so I think you're NOT safe
using that reference afterwards.
I repeat, that's just an empirical test, I have no idea about what the
standard mandates about it, although I feel it's UB at least.
--
FSC - http://userscripts.org/scripts/show/59948
http://fscode.altervista.org - http://sardinias.com