vote up 1 vote down star

I have a function like this

const string &SomeClass::Foo(int Value)
{
    if (Value < 0 or Value > 10)
        return "";
    else
        return SomeClass::StaticMember[i];
}

I get warning: returning reference to temporary. Why is that? I thought the both values the function returns (reference to const char* "" and reference to a static member) cannot be temporary.

flag

4 Answers

vote up 11 vote down check

This is an example when an unwanted implicit conversion takes place. "" is not a std::string, so the compiler tries to find a way to turn it into one. And by using the string( const char* str ) constructor it succeeds in that attempt. Now a temporary instance of std::string has been created that will be deleted at the end of the method call. Thus it's obviously not a good idea to reference an instance that won't exist anymore after the method call. I'd suggest you either change the return type to const string or store the "" in a member or static variable of SomeClass.

link|flag
A good answer! Here's why i think C++ is not a good choice for nowadays programming challenges. It'll consume you time taking care about its inner works when you would prefer to focus in the problem at hands. – Luis Filipe Aug 27 at 9:08
1  
@Luis: Every language you care to mention has these corner case gotchas. – Martin York Aug 27 at 16:43
It would appear the conversion is wanted here! :P Once you change to returning by value, the const should be dropped too. – Roger Pate Nov 26 at 1:34
vote up 3 vote down

The problem is in the first line. "" will be turned into an std::string, as it has a valid constructor that takes a char*. That std::string will be an anonymous object, which is temporary, and you return its reference.

link|flag
vote up 1 vote down

Like Shaggy Frog said, it converts "" to a temporary std::string object and since your method signature is std::string& it attempts to return a reference to it, hence you get the warning. One workaround may be to return the std::string by value (const std::string SomeClass::Foo(..)).

link|flag
vote up 1 vote down

This is the exemplary of trying to optimize code in c++. I did it, everybody did it... It is worth mentioning that this is the classical example that is eligible to return value optimization.

Like ttvd said the correct answer is to return const std::string and not a reference to it and to let the compiler optimise it.

If you trust the interpreter of your favorite language to optimize behind you, you shouldn't try to be too smart with C++ either.

link|flag

Your Answer

Get an OpenID
or

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