Are there any advantages of std::for_each over for loop? To me, std::for_each only seems to hinder the readability of code. Why do then some coding standards recommend its use?
|
|
||||
|
The nice thing with C++0X, is that this tiresome debate will be settled. I mean, no one in their right mind who want to iterate over a whole collection will still use this :
Or this :
when the range-based for-loop syntax will be available:
This kind of syntax is available in Java or C# for some time now, and there is actually way more foreach loop than classical for loop in every recent Java or C# code I saw. |
|||||||||||
|
|
Here are some reasons:
Update 1: Most importantly, ut helps you go beyond A lot of processing can be written very concise using "the rest" of for_each's siblings, but if all you do is write a for-loop with varioous internal logic you'll never learn to use those, and you'll end up inventing the wheel over and over. And (the soon-to-be available range-style for_each):
Or with C++x11 lambdas:
is IMO more readable than:
Also this (or with lambdas, see others):
Is more concise than:
Especially if you have several functions to call in order... but maybe that's just me. ;) Update 2: I've written my own one-liner wrappers of stl-algos that work with ranges instead of pair of iterators. boost::range_ex, once released, will include that and maybe it will be there in C++0x too? |
|||||||||
|
|
for_each is more generic. You can use it to iterate over any type of container (by passing in the begin/end iterators). You can potentially swap out containers underneath a function which uses for_each without having to update the iteration code. You need to consider that there are other containers in the world than std::vector and plain old C arrays to see the advantages of for_each. The major drawback of for_each is that it takes a functor, so the syntax is clunky. This is fixed in C++0x with the introduction of lambdas:
This will not look weird to you in 3 years. |
|||||||||||||||
|
|
Personally, any time I'd need to go out of my way to use
vs
|
|||
|
|
|
its very subjective, some will say that using
so its up to you to choose what is right for you. |
|||
|
|
|
Like many of the algorithm functions, an initial reaction is to think it's more unreadable to use foreach than a loop. It's been a topic of many flame wars. Once you get used to the idiom you may find it useful. One obvious advantage is that it forces the coder to separate the inner contents of the loop from the actual iteration functionality. (OK, I think it's an advantage. Other's say you're just chopping up the code with no real benifit). One other advantage is that when I see foreach, I know that either every item will be processed or an exception will be thrown. A for loop allows several options for terminating the loop. You can let the loop run its full course, or you can use the break keyword to explicitly jump out of the loop, or use the return keyword to exit the entire function mid-loop. In contrast, foreach does not allow these options, and this makes it more readable. You can just glance at the function name and you know the full nature of the iteration. Here's an example of a confusing for loop:
|
||||
|
|
You're mostly correct: most of the time, Among the standard algorithms, Just for example, I'm pretty sure I've lost track of how many times I've seen people writing code to print out the contents of a collection using
And their post is asking about what combination of
work, and print out the elements of Fortunately, there is a much better way. Add a normal stream inserter overload for XXX:
and use
That does work -- and takes virtually no work at all to figure out that it prints the contents of |
|||||||||||||||
|
|
The advantage of writing functional for beeing more readable, might not show up when If you utilize all algorithms in functional.h, instead of using for-loops, the code gets a lot more readable;
is much more readable than;
And that is what I think is so nice, generalize the for-loops to one line functions =) |
||||
|
|
|
The The problem with readability in the current standard is that it requires a functor as the last argument instead of a block of code, so in many cases you must write specific functor type for it. That turns into less readable code as functor objects cannot be defined in-place (local classes defined within a function cannot be used as template arguments) and the implementation of the loop must be moved away from the actual loop.
Note that if you want to perform an specific operation on each object, you can use
Which is not less readable and more compact than the hand rolled version if you do have function/method to call in place. The implementation could provide other implementations of the The upcoming standard takes care of some of the shortcomings in different ways, it will allow for locally defined classes as arguments to templates:
Improving the locality of code: when you browse you see what it is doing right there. As a matter of fact, you don't even need to use the class syntax to define the functor, but use a lambda right there:
Even if for the case of
I tend to mix the |
||||
|
|
|
Aside from readability and performance, one aspect commonly overlooked is consistency. There are many ways to implement a for (or while) loop over iterators, from:
to:
with many examples in between at varying levels of efficiency and bug potential. Using for_each, however, enforces consistency by abstracting away the loop:
The only thing you have to worry about now is: do you implement the loop body as function, a functor, or a lambda using Boost or C++0x features? Personally, I'd rather worry about that than how to implement or read a random for/while loop. |
|||
|
|
|
|
|||||||
|
|
I used to dislike The Functors for
And in the code you'd only have a one-liner like All of those functors are normally easier to get under unit tests than an explicit for loop in the middle of a long function, and that alone is already a big win for me.
And lastly, compiler might produce slightly better code for Same applies to other std algorithms like |
|||
|
|
|
You can have the iterator be a call to a function that is performed on each iteration through the loop. See here: http://www.cplusplus.com/reference/algorithm/for_each/ |
|||
|
|
|
Take a look: http://stackoverflow.com/questions/135129/should-one-prefer-stl-algorithms-over-hand-rolled-loops |
|||
|
|
|
I find for_each to be bad for readability. The concept is a good one but c++ makes it very hard to write readable, at least for me. c++0x lamda expressions will help. I really like the idea of lamdas. However on first glance I think the syntax is very ugly and I'm not 100% sure I'll ever get used to it. Maybe in 5 years I'll have got used to it and not give it a second thought, but maybe not. Time will tell :) I prefer to use
I find an explicit for loop clearer to read and explicity using named variables for the start and end iterators reduces the clutter in the for loop. Of course cases vary, this is just what I usually find best. |
|||
|
|
|
For loop can break; I dont want to be a parrot for Herb Sutter so here is the link to his presentation: http://channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-835T Be sure to read the comments also :) |
|||
|
|
|
The container vendor can add optimisations that aren't available to the for loop. |
|||
|
|
|
Mostly you'll have to iterate over the whole collection. Therefore I suggest you write your own for_each() variant, taking only 2 parameters. This will allow you to rewrite Terry Mahaffey's example as:
I think this is indeed more readable than a for loop. However, this requires the C++0x compiler extensions. |
|||
|
|
std::for_eachwhen used withboost.lambdaorboost.bindcan often improve readability – skwllsp Jan 12 '10 at 7:40