What's the recommended way of iterating a container in C++11?
Using
container.begin() and container.end()
Or
begin(container) and end(container)
If any, when is one preferred over the other?
|
|
The better way is
because it's more extensible. For example, template argument deduction can be used to determine the size of a static array and hence More generally, you can add overloads/specialisations to begin(.) end(.) and use immutable legacy types in generic algorithms. You really only need to worry about this if you're writing a generic algorithm youself
In client code it doesn't matter so much. In fact, I would say don't use the new form in that case -- I like to reserve certain styles/idioms for certain circumstances, divide my mindsets. But that's just me.
|
|||||||||||||||
|
|
I think the new syntax with range based for loops
is probably the most C++11 like. As others commented, you sometimes want |
|||||||||||||||||||||
|