vote up 1 vote down star

I'm simply trying to overload a + operator and I'm getting this compiler warning

reference to local variable 'tmp' returned

Here is the code for the overload

const Int& Int::operator+(const Int& p) const
{
    Int tmp = value + p.value;
    return tmp;
}

Here is the class

class Int{
    int value;
public:
    Int() {}    // default constructor
    Int(int v) : value(v) {}
    Int& operator=(const Int&);
    const Int& operator+(const Int&) const;
};
flag

3 Answers

vote up 3 vote down check

You can't return a reference to a local variable. Inside the operator+() function, you're creating a local variable called tmp. It will get destroyed as soon as the function exits. You can't return a reference to that variable, because it no longer exists when the calling function gets the return value.

Change your definition of the function to:

const Int operator+(const Int&) const;

It would build without warnings and work fine too.

link|flag
Thank you. Dumb mistake in terms of putting the reference in the definition. – trikker Aug 20 at 4:35
vote up 3 vote down

What you try to do is to return a reference to a memory location that will be invalid the moment you return it.

The variable tmp will disappear when it goes out of scope (that is, when operator+ is finished).

Because your return type is Int&, not the value of tmp is returned at "return tmp" but a reference to tmp. This is not correct because tmp will not exist anymore after the method is finished!!

Solution: Do not return as reference, but as Int

link|flag
vote up -1 vote down

this should work ok.

const Int& Int::operator+(const Int& p) const
{   
    Int tmp = new Int ;
    tmp = value + p.value;
    return tmp;
}
link|flag

Your Answer

Get an OpenID
or

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