C++11C++14C++17IteratorsLearn C++

Range-for-statement in Modern C++

Loop

Since C++11 there are elegant way to access each element of a containers (or, more generally, sequences) – so called range-for-statement. The syntaxes are follow:

Semantically, all the above statements means “for each element in container”, where elements of container are traversed in order from container.begin() till the container.end() (not inclusive, please see Introduction to C++ Iterators). The expression in place of container (in the simplest cases such as shown above, this expression is just a reference to the container) must yield an instance of a class with the defined function members begin() and end(), or the instance of a class for which the overloads of free functions in the enclosing scope are available to perform calls begin(container) and end(container). In both cases a pair of calls container.begin(), container.end() or begin(container), end(container) are used to obtain iterators pointed to the first element and the element one-past-the-last element of the sequence accordingly. Please note, that the auto could be replaced with a type to which implicit conversion of the type of the elements of the sequence is allowed.

If the syntaxes (1) and (2) exposed above are in use, it leads each element of the container to be copied to the controlled variable element. While this is fine for cheap to copy values (e.g. values of built-in types, or values of types like std::string_view), it could be costly for values of large size (e.g. values of type std::string) which can negatively affect the performance. Thus, be careful and use syntaxes (3) and (4), involving references which are more appropriate for elements that might be large. Please note, that in order to modify an element inside a range-for-statement, the controlled variable element must be a lvalue reference, and thus, the syntax (3) have to be used in this case.

Finally, let’s consider the example which demonstrates how to enable range-for-statement for a user-defined class:

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial

Free C++Builder Community Edition

Related posts
C++C++11C++14C++17C++20

What Is The Stack (std::stack) In Modern C++?

C++C++11C++14C++17C++20Learn C++

What Is The Queue (std::queue) In Modern C++?

C++C++11C++14C++17Learn C++SyntaxTemplates

What Are The Logical Operation Metafunctions In Modern C++?

C++C++14C++17C++20Learn C++

What Are The Deprecated C++14 Features In C++17?