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

What is aligned_storage in Modern C++

What is aligned storage in Modern C++

The C++11 standard introduced alignment support as one of the many features of the C++ programming language that can be used with the newest C++ compilers today. One of the new features of this support was a new keyword align std::aligned_storage that is used to provide the nested type which can be used as an uninitialized storage for any object whose size is at most given object size by the alignment size requirement. In this post, we explain how we can use aligned_storage in Modern C++.

What is alignment support in modern C++?

When we talk about ‘alignment’ in C++ it means a set of hints or instructions that tell the compiler to place the physical representation of data structures and variables in memory so that they line up at specific intervals of bytes – the underlaying digital representation of all data items. Alignment tells the compiler and linker to add additional ‘space’ to a value in memory so that the next object begins ‘nicely’ on a particular memory boundary.

Due to the way the CPU and other logic chips in a computer work, alignment can help create more computationally efficient programs. Think of it in the way you cut a cake – if you use an even number of slices for your cake it’s much easier and quicker to divide it up because you can cut the cake into nice even chunks of two. If you get an odd number of cake slices, it’s a lot harder to work out how big those slices need to be to make sure you don’t have a huge slice of cake left over – or someone gets a tiny slice (or none) and stays hungry! By cutting the cake in half each time you are ‘aligning’ your cake slices evenly and optimally so all cake is efficiently used with no wasted cake.

The C++11 standard intends to extend the standard language and library with alignment-related features, known as alignment support. These alignment features include:

  • The alignment specifier alignas for declarations.
  • The alignof expression to retrieve alignment requirements of a type.
  • Alignment arithmetic by library support (aligned_storage, aligned_union).
  • std::align standard function for pointer alignment at run time.

Alignment support in C++ can be found in more detail here in the C++ standards [Note: PDF link]. We also discuss the alignof keyword in this blog post: https://learncplusplus.org/what-is-the-alignof-expression-in-modern-c/.

In this post, we will explain the aligned_storage.

What is aligned_storage in modern C++?

The aligned_storage (std::aligned_storage) in C++ is used to provide a nested type which can be used as an uninitialized storage for any object whose size is at most a given object size by the alignment size requirement. Here are the syntax and helper type for the aligned_storage.

Syntax (Since C++11, deprecated in C++23):

Helper type (Since C++14, deprecated in C++23):

The main advantage of the std::aligned_storage is that it manages the alignment of given object size and it can be copied with memcpy(), also it can be used with POD and non-POD types.

std::aligned_storage can be used to decouple memory allocation from an object creation.

Note that aligned_storage and aligned_union are deprecated in C++23. There is also aligned_alloc which is released in C++17.

Is there an example of aligned_storage in modern C++?

Here is a full C++ example of how to use aligned_storage.

and the output will be as follows:

as you see 28 is the minimum size close to 25, which is 2×12+4.

If you need more in-depth details about this feature, see the original Alignment Support Proposal document.

What is aligned storage in Modern C++ The C++ Builder Logo

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. 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 cross-platform UIs.

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++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?

C++C++17Code SnippetGame DevelopmentLanguage FeatureLearn C++

What Is Skia In Modern C++?

C++C++17Learn C++

How To Use Skia in C++ Builder 12?

C++C++17C++20Introduction to C++Language FeatureLearn C++Syntax

Learn How To Use Clamp (std::clamp) In Modern C++ 17 and Beyond