I am trying to access values from keys in a std:map in C++
Assume that aObject is valid Mymap has several values.
map<myObject,int> mymap;
myObject aObject;
int value = mymap[aObject];
Do I have to redefine operator == for myObject?
What will happen if I don't redefine it?