for_each与伪函数

Posted wssw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}

 

以上是关于for_each与伪函数的主要内容,如果未能解决你的问题,请参考以下文章

C++ STL for_each 的用法?

使用 std::for_each lambda 函数的错误

如何计算 std::for_each lambda 函数所需的类型

匿名函数和for_each用法

函数对象(for_each)未解决

JS-数组与伪数组