C++C++17C++20IteratorsLearn C++

What Is forward_list (std::forward_list) In Modern C++?

What Is forward list stdforward list In Modern C++

The C++ programming language has a lot of options to add and modify data members with their amazing data holders, arrays, structs, pointers and containers. Containers are powerful data storage arrays in C++ and they are very useful to iterate and search. A container is a holder object that stores data elements (a collection of data objects). std::vector, std::array, std::set, std::list are these kinds of containers. There is another useful container std::forward_list, in this post, we explain what std::forward_list is. Before that let’s remind ourselves what containers are in C++ programming and what are their types.

What is a container in modern C++?

Containers are modern data storage arrays in modern C++ and they are very useful to iterate and search data with their amazing methods and properties.

A container is a holder object that stores data elements (a collection of data objects). They are implemented as a class template to define objects that can be used with modern rules of C++ (The rule of 6), they allow great flexibility in the different data types supported as elements, they can be used with int, float, double, etc. or with struct types, they can be used with other modern types of C++, lambdas and templates. Thus, the developer can create different data sets in memory, these can be static or dynamic, they are safe and optimized well.

What are the basic container types modern C++?

The C++ Standards library defines 4 container types. 

  • Sequence Containers ( vector, array, deque, list, forward_list )
  • Associative Containers ( map, multimap, set, multiset )
  • Unordered Associative Containers ( unordered_map, unordered_multimap, unordered_set, unordered_multiset )
  • Container Adapters  ( stack, queue, priority_queue )

If you want to learn more about these each type, here are some basic details,

What is std::forward_list in modern C++?

The forward_list (std::forward_list) is a sequence container class template defined in <forward_list> header that supports forward iterations, and faster insert and delete operations. The std::forward_list does not invalidate pointers or references of its members when you use these insertion methods or deletion methods as in std::list and std::deque, while the std::vector does. They support only forward iterations and do not support bidirectional iterations, and because of this, they use less memory space than the std::list. If you do not need backward iterations in a list, then it is much better to use std::forward_list

In general, std::forward_list is defined as below.

Since C++17, std::forward_list is improved and defined in the pmr namespace as below.

Is there a simple std::forward_list example in modern C++?

Here is a simple std::forward_list declaration example in C++.

we can define its member in definition as below.

Or we can use push_front methods to add new members on runtime.

and there is no push_back method because of being forward list.

What is std::forward_list in modern C++?

Here is a full example about std::forward_list

and the output will be as follows,

For more new details, please check these papers, p0646r1 and n2543

What Is forward list stdforward list In Modern C++ C++ logo

C++ Builder is the easiest and fastest C and C++ compiler and IDE for building simple or professional applications on the Windows operating system. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here.

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

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++17C++20C++23Learn C++Syntax

How To Use std::make_from_tuple in C++ 17

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

How To Use std::apply With Tuple In C++ 17 And Beyond?

C++C++17C++20Learn C++NumericsSyntax

How To Compute The Greatest Common Divisor And Least Common Multiple in C++?

C++C++17Language FeatureLearn C++

How To Use Skia Shader SkSL Shading Language Code in C++ Builder?