码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 标准模板库(STL)——迭代器(iterators)的用法及理解

时间:2021-07-12 18:25:02      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:模板库   mes   include   start   turn   begin   pre   理解   ace   

C++ STL中迭代器(iterators)用于遍历对象集合的元素。这些集合可能是容器,也可能是容器的子集。

举例:(1)set的遍历:

#include<iostream>
#include<set>        
using namespace std;

int main()
{
    set<int> int_set;
    for (int i = 0; i < 5; i++)
    {
        int_set.insert(i);            
    }
    for (auto start = int_set.begin(); start != int_set.end(); start++)
    {                       
        cout << *start << endl;
    }return 0;
}

(2)map的遍历:

#include<iostream>
#include<map>    
using namespace std;

int main()
{
    map<int, char> my_map;                                 
    my_map[0] = a;                                        
    my_map[1] = b;
    my_map.insert(map<int, char>::value_type(2, c));       
    for (auto it = my_map.begin(); it != my_map.end(); it++) //map.begin()、map.end():返回map的首、尾迭代器
    {
        cout << "key: " << it->first << " value: " << it->second << endl;
    }return 0;
}

C++ 标准模板库(STL)——迭代器(iterators)的用法及理解

标签:模板库   mes   include   start   turn   begin   pre   理解   ace   

原文地址:https://www.cnblogs.com/JCpeng/p/15001728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!