1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
// unordered_multimap::find
#include <iostream>
#include <string>
#include <unordered_map>
int main ()
{
std::unordered_multimap<std::string,std::string> mymap = {
{"mom","church"},
{"mom","college"},
{"dad","office"},
{"bro","school"} };
std::cout << "one of the values for 'mom' is: ";
std::cout << mymap.find("mom")->second;
std::cout << std::endl;
return 0;
}
| |