- #include<bits/stdc++.h>
- using namespace std;
- map<int, string> mp;
- //map<int, int> mp={{9,22},{1,35},{6,77}}; //給予初始值
- int main()
- {
- mp[2]="t";
- mp[7]="s";
- mp[1]="o";
- mp[5]="f";
- mp[6]="s";
- mp[9]="n";
- mp[6]="s2"; //若key發生重複,新的value會取代舊的。
- /*
- for(int i=0; i<=10; i++)
- cout<<i<<": "<<mp[i]<<endl;*/
- for(auto p: mp) //從map裡撈出的每一個成員都是pair
- cout<<p.first<<": "<<p.second<<endl;
- cout<<"-------"<<endl;
- for(auto it=mp.begin(); it!=mp.end(); it++)
- cout<<(*it).first<<": "<<(*it).second<<endl;
- return 0;
- }
複製代碼 |