This crashes at runtime.
std::map<std::string, MyClass> myMap;
myValue = new MyClass();
myMap["myKey"] = *myValue;
I have 2 requirements:
- That instances of MyClass are held on the heap (hence use of new);
- That I be able to reference these via an associative array (hence use of std::Map).
Why can I not use the dereference operator succesfully in the example? How can I fulfill both at once?
PS. I'm using gcc.
std::map<std::string, MyClass*>? – Flexo♦ Jul 21 '11 at 11:22myValuedefined ? DoesMyClasshave a proper copy constructor and assignment operator (that perform a deep copy if necessary) ? – Sander De Dycker Jul 21 '11 at 11:33