zoukankan      html  css  js  c++  java
  • for_each与伪函数

    1.for_each就是封装好的循环遍历函数。共三个参数,前两个为迭代器,最后一个参数为函数指针或者伪函数。

    函数原型如下(effective stl):

    template< typename InputIterator, typename Function >
    Function for_each( InputIterator beg, InputIterator end, Function f ) {
        while ( beg != end )
            f( *beg++ );
    }


    2.伪函数就是重载了()运算符的struct或class.

    struct DelPointer
    {
        template<typename T>void operator()(T* ptr) 
        {
            delete ptr;
        }
    }
    

    3.for_each实例。

    #include <vector>
    #include <iostream>
    
    struct State
    {
        State( int state ) : m_state( state ){}
        ~State() { std::cout << "~State(), m_state=" << m_state << std::endl; }
    
        void setState( int state ){ m_state = state; }
        int getState() const{ return m_state; }
    
        void print() const { std::cout << "State::print: " << m_state << std::endl; }
    
    private:
        int m_state;
    };
    
    int main()
    {
        std::vector<State*> vect;
        ......................................
        ......................................
        std::for_each( vect.begin(), vect.end(), DeletePointer() );
        vect.clear();
    
        system( "pause" );
        return 0;
    }

    4.如果觉得每次都要定义一个伪函数比较麻烦,STL也给我们提供了模板函数,用于简化这种情况。

    #include <vector>
    #include <iostream>
    
    struct State
    {
        State( int state ) : m_state( state ){}
        ~State() { std::cout << "~State(), m_state=" << m_state << std::endl; }
    
        void setState( int state ){ m_state = state; }
        int getState() const{ return m_state; }
    
        void print() const { std::cout << "State::print: " << m_state << std::endl; }
    
    private:
        int m_state;
    };
    
    int main()
    {
        std::vector<State*> vect;
    
        vect.push_back( new State(0) );
        vect.push_back( new State(1) );
        vect.push_back( new State(2) );
        vect.push_back( new State(3) );
    
        std::for_each( vect.begin(), vect.end(), std::mem_fun( &State::print ) );
        
        system( "pause" );
        return 0;
    }
  • 相关阅读:
    阿里云服务器常见问题记录
    npm 常见错误记录
    C程序设计(第四版)课后习题完整版 谭浩强编著
    博客如何快速让百度谷歌等各大引擎收录
    python itertools 用法
    python中dict的fromkeys用法
    python解析XML
    flask+uwsgi+nginx+docker-compose部署
    python的构建工具setup.py
    python判断字符串类型
  • 原文地址:https://www.cnblogs.com/wsswlyy/p/6323468.html
Copyright © 2011-2022 走看看