4 for_each loop
This loop is defined in the header file “algorithm”: #include, and hence has to be included for successful operation of this loop.
该循环在头文件“算法”中定义:#include algorithm ,因此必须包含该循环才能成功运行。
It is versatile, i.e. Can work with any container.
它是多功能的,即可以与任何容器一起工作。
It reduces chances of errors one can commit using generic for loop
它减少了使用泛型for循环犯错的机会
It makes code more readable
它使代码更具可读性
for_each loops improve overall performance of code
for_ each循环提高了代码的整体性能
syntax:
for_each (InputIterator start_iter, InputIterator last_iter, Function fnc)start_iter : The beginning position from where function operations has to be executed.last_iter : The ending position till where function has to be executed.fnc/obj_fnc : The 3rd argument is a function or an object function which operation would be applied to each element.
code demo:
#include#include#includeusing namespace std; // helper function 1void printx2(int a){ cout << a * 2 << " ";} // helper function 2// object type functionstruct Class2{ void operator() (int a) { cout << a * 3 << " "; }} ob1; int main(){ // initializing array int arr[5] = { 1, 5, 2, 4, 3 }; cout << "Using Arrays:" << endl; // printing array using for_each // using function cout << "Multiple of 2 of elements are : "; for_each(arr, arr + 5, printx2); cout << endl; // printing array using for_each // using object function cout << "Multiple of 3 of elements are : "; for_each(arr, arr + 5, ob1); cout << endl; // initializing vector vector arr1 = { 4, 5, 8, 3, 1 }; cout << "Using Vectors:" << endl; // printing array using for_each // using function cout << "Multiple of 2 of elements are : "; for_each(arr1.begin(), arr1.end(), printx2); cout << endl; // printing array using for_each // using object function cout << "Multiple of 3 of elements are : "; for_each(arr1.begin(), arr1.end(), ob1); cout << endl;}
Invalid arguments may leads to Undefined behavior.
无效参数可能导致未定义的行为。
For_each can not work with pointers of an array (An array pointer do not know its size, for_each loops will not work with arrays without knowing the size of an array).
For_ each不能处理数组指针(数组指针不知道其大小,For_each循环在不知道数组大小的情况下不能处理数组)。
ref
https://www.geeksforgeeks.org/loops-in-c-and-cpp
-End-