Mega Code Archive

 
Categories / C++ Tutorial / Map Multimap
 

Instantiating an STL map and multimap (Key Type

#include <map> #include <string> int main () {     using namespace std;     map <int, string> mapIntegersToString;     multimap <int, string> mmapIntegersToString;     return 0; }