【夏天到了,知了叫了】map容器是一种关联容器,类似于python中的字典,有键-值声明:map<int,int> m;遍历:map<int,int>::iterator it;for(it=m.begin();it!=m.end();it++){ cout << it->first << " " << it->second << endl;}