(原創) 如何使用for_each() algorithm? (C/C++) (STL)

时间:2022-09-01 18:32:56

很怀念VB和C#的foreach语法吗?对于C++只能用for语法造成程序冗长觉得很烦吗?foreach的确对于container而言非常好用且精简,C++/CLI已经增加上了for each语法了,事实上,C++也可使用foreach喔,STL提供了for_each() algorithm,可以弥补这个缺憾。

for_each() algorithm会将每个iterator当作const iterator处理,若只用普通的function,直接将function name传入即可,别忘了function name本身也是个pointer,若要用template function,则必须将该template function转成function pointer才可传进for_each algorithm,以下范例demo for_each() algorithm的用法。

 1 (原創) 如何使用for_each() algorithm? (C/C++) (STL)(原創) 如何使用for_each() algorithm? (C/C++) (STL) /* 
 2(原創) 如何使用for_each() algorithm? (C/C++) (STL)(C) OOMusou 2006 http://oomusou.cnblogs.com
 3(原創) 如何使用for_each() algorithm? (C/C++) (STL)
 4(原創) 如何使用for_each() algorithm? (C/C++) (STL)Filename    : GenericAlgo_for_each.cpp
 5(原創) 如何使用for_each() algorithm? (C/C++) (STL)Compiler    : Visual C++ 8.0
 6(原創) 如何使用for_each() algorithm? (C/C++) (STL)Description : Demo how to use for_each algorithm.
 7(原創) 如何使用for_each() algorithm? (C/C++) (STL)              Applies a specified function object to each element 
 8(原創) 如何使用for_each() algorithm? (C/C++) (STL)              in a forward order within a range and returns the 
 9(原創) 如何使用for_each() algorithm? (C/C++) (STL)              function object.
10(原創) 如何使用for_each() algorithm? (C/C++) (STL)Release     : 11/19/2006
11(原創) 如何使用for_each() algorithm? (C/C++) (STL)*/

12 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
13 (原創) 如何使用for_each() algorithm? (C/C++) (STL)#include  < iostream >
14 (原創) 如何使用for_each() algorithm? (C/C++) (STL)#include  < vector >
15 (原創) 如何使用for_each() algorithm? (C/C++) (STL)#include  < algorithm >
16 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
17 (原創) 如何使用for_each() algorithm? (C/C++) (STL)template  < class  T >
18 (原創) 如何使用for_each() algorithm? (C/C++) (STL) void  coutIterator1(T  & );
19 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
20 (原創) 如何使用for_each() algorithm? (C/C++) (STL) void  coutIterator2( int   & );
21 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
22 (原創) 如何使用for_each() algorithm? (C/C++) (STL)(原創) 如何使用for_each() algorithm? (C/C++) (STL) int  main()  {
23(原創) 如何使用for_each() algorithm? (C/C++) (STL)  std::vector<int> ivec(3,1);
24(原創) 如何使用for_each() algorithm? (C/C++) (STL)
25(原創) 如何使用for_each() algorithm? (C/C++) (STL)  void (*pf) (int &= coutIterator1;
26(原創) 如何使用for_each() algorithm? (C/C++) (STL)  for_each(ivec.begin(), ivec.end(), pf);
27(原創) 如何使用for_each() algorithm? (C/C++) (STL)
28(原創) 如何使用for_each() algorithm? (C/C++) (STL)  std::cout << std::endl;
29(原創) 如何使用for_each() algorithm? (C/C++) (STL)
30(原創) 如何使用for_each() algorithm? (C/C++) (STL)  for_each(ivec.begin(), ivec.end(), coutIterator2);
31(原創) 如何使用for_each() algorithm? (C/C++) (STL)
32(原創) 如何使用for_each() algorithm? (C/C++) (STL)  return 0;
33(原創) 如何使用for_each() algorithm? (C/C++) (STL)}

34 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
35 (原創) 如何使用for_each() algorithm? (C/C++) (STL)template  < class  T >
36 (原創) 如何使用for_each() algorithm? (C/C++) (STL)(原創) 如何使用for_each() algorithm? (C/C++) (STL) void  coutIterator1(T  & iter)  {
37(原創) 如何使用for_each() algorithm? (C/C++) (STL)  std::cout << iter << std::endl;
38(原創) 如何使用for_each() algorithm? (C/C++) (STL)}

39 (原創) 如何使用for_each() algorithm? (C/C++) (STL)
40 (原創) 如何使用for_each() algorithm? (C/C++) (STL)(原創) 如何使用for_each() algorithm? (C/C++) (STL) void  coutIterator2( int   & i)  {
41(原創) 如何使用for_each() algorithm? (C/C++) (STL)  std::cout << i << std::endl;
42(原創) 如何使用for_each() algorithm? (C/C++) (STL)}

for_each() algorithm不能修改iterator,若要修改iterator,需用transform() algorithm。

See Also
(原創) 如何正確的使用迴圈(使用for_each)? (C/C++) (STL) (template)

Reference
C++ Primer 3rd中文版 P.1145