在C++中,有以下幾種方式可以遍歷map:
std::map<int, std::string> myMap;
// 添加元素到myMap
for(auto it = myMap.begin(); it != myMap.end(); ++it) {
std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
}
std::map<int, std::string> myMap;
// 添加元素到myMap
for(auto& pair : myMap) {
std::cout << "Key: " << pair.first << ", Value: " << pair.second << std::endl;
}
std::map<int, std::string> myMap;
// 添加元素到myMap
for(auto pair : myMap) {
std::cout << "Key: " << pair.first << ", Value: " << pair.second << std::endl;
}
這些都是常用的遍歷map的方式,根據個人習慣和需求選擇適合的方式即可。