1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| // map::clear #include <iostream> #include <map> int main () { std::map<char,int> mymap; mymap['x']=100; mymap['y']=200; mymap['z']=300; std::cout << "mymap contains:\n"; for (std::map<char,int>::iterator it=mymap.begin(); it!=mymap.end(); ++it) std::cout << it->first << " => " << it->second << '\n'; mymap.clear(); mymap['a']=1101; mymap['b']=2202; std::cout << "mymap contains:\n"; for (std::map<char,int>::iterator it=mymap.begin(); it!=mymap.end(); ++it) std::cout << it->first << " => " << it->second << '\n'; return 0; }
|