zoukankan      html  css  js  c++  java
  • [boost]BOOST_FOREACH遍历操作

    BOOST_FOREACH可以方便的遍历STL容器.

    只需要头文件:

    #include <boost/foreach.hpp>

    然后遍历容器vector/list/set/deque/stack/queue都是类似的:

    vector<int32_t> _v;
    BOOST_FOREACH(int32_t value,_v)
    {
    //这里就可以访问value
    }

    同时元素还支持引用,const,比如上面代码还可以写成:

    vector<int32_t> _v;
    
    BOOST_FOREACH(int32_t& value,_v)
    {
    //这里就可以修改/访问value
    }

    如果元素内容是结构体之类,引用可以防止拷贝~~

    对于map的访问有一点特殊,因为map的元素是std::pair<T1,T2>,所以需要写成这样:

    std::map<int32_t,int32_t> _map;
    typedef const std::map<int32_t, int32_t>::value_type const_pair;
    BOOST_FOREACH(const_pair& node,_map)
    {
    //这里就可以访问node的元素
    int32_t key = node.first;
    int32_t value = node.second;
    }

    BOOST_FOREACH是正向的迭代,逆向的是BOOST_REVERSE_FOREACH

    另外,不能再scope做一些使迭代器失效的操作,比如说删除之类。

    最后说说C++11中for循环:

    C++11支持range-based for循环。这是一个很方便的特性,能省挺多代码。以下代码就能很方便的遍历vector中的元素,并打印出来:

    std::vector<int> int_vec;
    int_vec.push_back(1);
    int_vec.push_back(2);
    //如果要修改int_vec中的元素,将变量x声明为 int& 即可
    for (auto x: int_vec)
    {
        std::cout << x << endl;
    }

    可以遍历的对象包括:

    • 数组。(不包括指针)
    • 定义了begin()和end()方法,且返回该方法返回迭代器的类对象。(STL 中所有容器都可以)

    但是对于std中的queue和stack的遍历,好像for还不支持吧?

    本文参考:

    https://www.cnblogs.com/h46incon/archive/2013/06/02/3113737.html

    https://www.cnblogs.com/egmkang/archive/2011/05/14/2046205.html

  • 相关阅读:
    谷哥的小弟学后台(29)——动态代理
    HDU
    jni 入门 android的C编程之旅 --->环境搭建&&helloworld
    C# 开发系列(二)
    C# 开发系列(一)
    ajax跨域实现api 接口调用
    dependency injection(2)
    要读的书单
    dependency injection
    php dependency innjection
  • 原文地址:https://www.cnblogs.com/Swetchine/p/12015387.html
Copyright © 2011-2022 走看看