使用C++迭代器iterator遍歷map的方法如下:
使用begin()函數獲取map的起始迭代器。
使用end()函數獲取map的結束迭代器。
使用循環結構(如for循環、while循環)和迭代器逐個遍歷map中的元素,直到迭代器達到結束位置為止。
在循環中使用迭代器的first和second成員訪問map中的鍵和值。
以下是一個示例代碼:
#include <iostream>
#include <map>
int main() {
std::map<int, std::string> myMap;
myMap[1] = "One";
myMap[2] = "Two";
myMap[3] = "Three";
// 使用迭代器遍歷map
std::map<int, std::string>::iterator it;
for (it = myMap.begin(); it != myMap.end(); ++it) {
std::cout << "Key: " << it->first << " Value: " << it->second << std::endl;
}
return 0;
}
運行結果:
Key: 1 Value: One
Key: 2 Value: Two
Key: 3 Value: Three