#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。