STL中的for_each

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

class OpClass
{
public:
   void operator()(int i)
   {
      cout << i << endl;
   }
};

int main()
{
   vector<int> vi;
   vi.push_back(10);
   vi.push_back(20);
   
   for_each(vi.begin(), vi.end(), OpClass());

   return 0;
}
$ ./a.out 
10
20
posted @ 2022-07-27 16:56  thomas_blog  阅读(17)  评论(0编辑  收藏  举报