Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

std::map requires that you either overload operator< for the key-type, or provide a comparator. Both have to implement a strict weak ordering. If you don't provide either, your program will not compile. If you implement them incorrectly (i.e. not as a strict weak ordering) you get garbage results (I actually don't know if this is actually undefined behavior in the strict sense).

share|improve this answer
arrgh - beat me again.. :) – Nim Oct 18 '11 at 13:39
@Nim: I'm on fire today :) – Björn Pollex Oct 18 '11 at 13:40
2  
...or specialise std::less for the key type. – Mike Seymour Oct 18 '11 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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