美文网首页
STL中mem_fun和mem_fun_ref的用法

STL中mem_fun和mem_fun_ref的用法

作者: 寒冰豌豆 | 来源:发表于2017-04-21 16:26 被阅读0次

引自STL中mem_fun和mem_fun_ref的用法

#include <iostream>
using namespace std;
#include <vector>
#include <algorithm> //for_each()
class classTest
{
public:
    int Dosomething()
    {
        cout<< "output from method Dosomething !"<<'\n' ;
        return 0;
    }
};


int DoSome(classTest *cl)
{
    return cl -> Dosomething();
}


int main()
{
    vector <classTest*> vT;
    
    for(int i=0;i<13;++i)
    {
        classTest * t = new classTest;
        vT.push_back(t);
    }

    //对容器中的元素进行dosomething的操作
    for(int i=0;i<vT.size();++i)
        vT.at(i)->Dosomething();

    //使用迭代器访问所有的元素
    for(vector<classTest*>::iterator it = vT.begin();it != vT.end(); ++it)
    {
        (*it) -> Dosomething();
    }
    
    //若不自己写循环,用for_each()
    //先定义一个函数Dosome()

    for_each(vT.begin(), vT.end(), &DoSome);

    cout<<'\n';
    //若不想调用DoSome()函数呢
    for_each(vT.begin(), vT.end(), std::mem_fun( &classTest::Dosomething) );
    
    return 0;
}

mem_fun_ref的作用和用法跟mem_fun一样,唯一的不同就是:当容器中存放的是对象实体的时候用mem_fun_ref,当容器中存放的是对象的指针的时候用mem_fun。

相关文章

网友评论

      本文标题:STL中mem_fun和mem_fun_ref的用法

      本文链接:https://www.haomeiwen.com/subject/tkvdzttx.html