Next: Verwendung eines Multimap
Up: Container (forts.)
Previous: Verwendung eines Map
/* GR Beispiel für die Verwaltung von
Name und Größe von Personen mit einer Map
1998-11
*/
#include <iostream>
#include <map>
#include <string>
using namespace std;
int main() {
typedef map<string,float> StringFloatMap;
StringFloatMap personen;
personen["Marie-Theres"]=1.11;
personen["Helena"]=0.75;
personen["Sabine"]=1.68;
personen["Gottfried"]=1.86;
for ( StringFloatMap::iterator i = personen.begin();
i != personen.end(); ++i )
{
cout << "Die Person \"" << i->first << "\" ist "
<< i->second << "m Groß." << endl;
}
return 0;
}
© 1997 Gottfried Rudorfer, C++-AG, Lehrveranstaltungen, Abteilung für Angewandte Informatik, Wirtschaftsuniversität Wien, 12/1/1998 |