中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

怎么用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
东乌珠穆沁旗| 云阳县| 成安县| 会宁县| 班戈县| 沐川县| 图木舒克市| 九台市| 肇源县| 南郑县| 达州市| 淮阳县| 广昌县| 秦皇岛市| 当雄县| 利辛县| 宜兰市| 那坡县| 怀宁县| 宜都市| 伊宁县| 文昌市| 波密县| 务川| 星子县| 江油市| 沙坪坝区| 宝坻区| 盘锦市| 瓦房店市| 钦州市| 龙州县| 唐河县| 惠州市| 临清市| 利辛县| 喀喇| 金昌市| 太保市| 永胜县| 正阳县|