I have a struct with a std::map of pointers inside it. I'm trying to do the following:

template <class T>
struct Foo
{
    std::map<std::string, T*> f;
    T& operator[](std::string s)
    {
        return *f[s];
    }
}

and then use it like this:

Foo<Bar> f;
f["key"] = new Bar();

but the way it's written, it crashes the program. I also tried like this:

T* operator[](std::string s)
{
    return f[s];
}

but it doesnt compile. It says "lvalue required as left operand of assignment" on the f["key"] = new Bar() line.

I expected it to be easy since I'm trying to return a pointer and I'm storing a pointer. What is wrong with my code?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The correct way of doing this is:

T*& operator[](std::string s)
{
    return f[s];
}

and call it like f["key"] = new Bar().

EDIT: You should start passing non-basic types by const reference where you can:

T*& operator[](const std::string& s)
link|improve this answer
Why std::string s? Why not std::string const & s? – Nawaz Feb 21 at 8:01
@Nawaz didn't catch it. – Luchian Grigore Feb 21 at 8:04
Should have const and non-const methods for operator[] – Ajay Feb 21 at 8:25
Thanks for the help :D, but what does *& means and why use const references for parameters? – Luke B. Feb 21 at 14:27
@LukeB. that's a pointer reference - an alias to the exact object returned by the method, not a copy of it. You pass by reference to prevent extra copy of the parameter. – Luchian Grigore Feb 21 at 14:33
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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