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

What Are Delegating Constructors In Modern C++?

What Are Delegating Constructors In Modern C++

C++11 introduces the possibility of Delegating Constructors (aka Constructor Delegation) that can be used by C++ in 2023. In the Constructor Delegation feature, class constructors can be invoked within other constructors of the same class. This is a very useful feature that helps programmers to write less and more expressive code. Constructor Delegation reduce the repetitive code by adding a function that does all of the validation, in this method one constructor could delegate some of the work to another construction method.

What Is a constructor in Modern C++?

Object-Oriented Programming (OOP) is a way to represent data and functionality with programming constructs we call objects. Objects can contain data in the form (attributes or properties of objects), and code blocks in the form of procedures (methodsfunctions of objects). These attributes and methods are variables and functions that belong to the class (the collective name for the object’s code), they are generally referred to as a class member. Constructors are one of the members of classes.

Classes are defined in C++ using the keyword class followed by the name of the class. Classes are the blueprint for the objects, and they are user-defined data types that we can use in our program. 

Objects are an instantiation of a class. In C++ programming, most of the commands are associated with classes and objects, along with their attributes and methods.

The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function; it gets called automatically. Whenever a new object of a class is created, the Constructor allows the class to initialize member variables or allocate storage. This is why the name Constructor is given to this special method.

If you are new to OOP and want to know more about Constructs please start with this two posts.


We have many different constructor examples in C++, please check this dynamic search for more examples: https://learncplusplus.org/page/2/?s=constructor

What are delegating constructors in Modern C++?

The Delegating Constructors (aka Constructor Delegation) come with the C++11 standard and later. In Constructor Delegation, class constructors can be invoked within other constructors of the same class. This is a very useful feature that helps programmers to write less and more expressive code.

In C++ you may have different constructor methods in a class. Constructor Delegation reduce the repetitive code by adding another constructor that does all of the validation, in this method one constructor could delegate some of the work to another construction method.

For more information about this feature, see Delegating Constructors (revision 3) Delegating constructors Proposal document [PDF link].

Is there a simple delegating constructor example in modern C++?

The following example shows how delegating constructors can be used in modern C++.

Is there full delegating constructor examples in modern C++?

This example is good to understand how you can delegate some of the work to another construction method.

Here Tdata() constructor is reading data in construction, and the Tdata(int x) constructor delegate Tdata() constructor, reads and analyses in its construction.

Delegation can be as below too.

What Are Delegating Constructors 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 The SVG Image Format With Skia In C++ Builder

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?