在C++中,可以使用迭代器遍歷std::map容器。以下是一些技巧:
std::map<int, std::string> myMap;
// 使用auto關(guān)鍵字自動推導(dǎo)迭代器類型
for (auto it = myMap.begin(); it != myMap.end(); ++it) {
// 迭代器操作
}
std::map<int, std::string> myMap;
// 使用范圍for循環(huán)
for (const auto& pair : myMap) {
// pair為鍵值對,first為鍵,second為值
}
std::map<int, std::string> myMap;
// 使用迭代器的成員函數(shù)
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;
int keyToFind = 1;
auto it = myMap.find(keyToFind);
if (it != myMap.end()) {
// 找到了特定鍵值對
std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
} else {
// 未找到特定鍵值對
std::cout << "Key not found" << std::endl;
}