I am trying to access a specific element out of a std::map with more than two elements. Here is an example:
std::map <int, CString, CString, CString> map;
//Initialise
map[0] = _T("stuff1"), _T("stuff2"), _T("stuff3");
//now if I just want to access stuff3 is it this:
CString str = map[0][2];
//or something more like this?
CString str = map[0]. ???
Any help would be great thanks.
edit: Thanks sorry about that, first time using maps, I was wondering why I couldn't find any information on std::map 's with more elements inside.

std::map <int, CString, CString, CString>-- that's not how astd::mapworks, or any container for that matter. Only the second type is the value type. If you need multiple values, make it atupleor a simplestruct/class. – Xeo Aug 24 '12 at 10:24CString, atupledoesn't fit as well asarrayorvector. – chris Aug 24 '12 at 10:33