91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

怎么用c++迭代器iterator遍歷map

小億
200
2023-10-14 08:32:34
欄目: 編程語言

使用C++迭代器iterator遍歷map的方法如下:

  1. 使用begin()函數獲取map的起始迭代器。

  2. 使用end()函數獲取map的結束迭代器。

  3. 使用循環結構(如for循環、while循環)和迭代器逐個遍歷map中的元素,直到迭代器達到結束位置為止。

  4. 在循環中使用迭代器的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

0
电白县| 横山县| 阿克| 濉溪县| 屯门区| 林芝县| 寿宁县| 甘肃省| 屯昌县| 通化县| 彭阳县| 两当县| 聂荣县| 濮阳市| 溧水县| 彭阳县| 岚皋县| 错那县| 江山市| 惠来县| 兴安盟| 富宁县| 韩城市| 定兴县| 三河市| 普定县| 安龙县| 西贡区| 桑日县| 井研县| 定安县| 海兴县| 南郑县| 玛纳斯县| 江川县| 五指山市| 淮滨县| 凤台县| 隆林| 宁海县| 辛集市|