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

What Is A Deleted Implicitly-declared Move Constructor In Modern C++?

C++ is packed with Object Oriented Programming features, such as Classes, Objects, constructors, move constructors, destructors, etc. Since the C++11 standard, in a modern C++ compiler, one of the features is the move constructor that allows you to move the resources from one object to another object without copying them. One of the move constructors is the Deleted Implicitly-declared Move Constructor (also it is shown in compiler errors as Implicitly-deleted Move Constructor) which is deleted in a base class directly or has been deleted because of some other declarations,. In this post, we explain the implicitly-declared move Constructor in Modern C++.

First, let’s remind ourselves what are classes and objects in C++.

What are classes and objects in modern C++?

Classes are defined in C++ using 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, and they work as an object constructor. Objects are an instantiation of a class, In another term. In C++ programming, most of the commands are associated with classes and objects, along with their attributes and methods. Here is a simple class example.

Then we can create our objects with this Type of myclass like so:

What is a move constructor in modern C++?

The move constructor is a constructor that allows you to move the resources from one object to another object without copying them. In other words, the move constructor allows you to move the resources from an rvalue object into to an lvalue object.

The move constructor is used to move data of one object to the new one. It effectively makes a new pointer to the members of an old object and transfers the resources to the heap memory. When you move a member, if the data member is a pointer, you should also set the value of the member of the old object to a NULL value. When you use the move constructor, you don’t use unnecessary data copying in memory. This allows you to create objects faster. Mostly, if your class/object has a move constructor, you can use other move methods of other features of C++, for example, std::vector, std::array, std::map, etc. You can create a vector with your class type then you can use the push_back() method that runs your move constructor.

Here is the most common syntax for the move constructor in C++ (Since C++11).

This general syntax is also a syntax for the “Typical declaration of a move constructor”.

What is a deleted implicitly-declared move constructor in C++?

The Deleted Implicitly-declared Move Constructor (also known in compiler errors as the implicitly-deleted move constructor) is a Move Constructor which is deleted in a base class directly or has been deleted because of some other declarations.

In modern C++, the implicitly-deleted move constructor for class type T is defined as deleted if this class type T:

  • has non-static data members that cannot be moved, or
  • has direct or virtual base class that cannot be moved, or
  • has direct or virtual base class or a non-static data member with a deleted or inaccessible destructor, or
  • is a union-like class and has a variant member with non-trivial move constructor

If there is a defaulted move constructor that is deleted, then it is ignored by overload resolution, because in other case it will prevent copy-initialization from rvalue.

In C++, The Rule of Five states that if a type ever needs one of the following special members, then it must have all of the five special members.

  • copy constructor
  • copy assignment
  • move constructor
  • move assignment
  • destructor

In other words, if you have a move constructor in a class, you should carefully define all of these in accordance with your data members (properties).

Note that, classes may have different move constructors. Additionally, if there is a user-defined move constructor present, the user may still delete the implicitly declared move constructor with the keyword delete.

Is there a simple example of a deleted implicitly-declared move constructor in C++?

Let’s give a simple C++ example of a deleted implicitly-declared move constructor which is a move constructor of another base class. Let’s assume that we have Tx as a base class, and we have a new Ty class.

Here is a Tx class example with a declared and defined move constructor that uses std::move.

As given here above, if you have a move constructor, you should define a Constructor too, otherwise you will have “No matching constructor for initialization of class” error in compilation.

Now, we can define a new Ty class and we can use Tx class as a base class as below.

As you can see, this Ty class above has the implicitly-deleted move constructor from Tx class. We cannot use a move constructor with std::move as in example below:

Here o2 can not be declared by std::move because Ty has Tx class which has deleted move constructor.

Is there a full example of a deleted implicitly-declared move constructor in modern C++?

Here is a full example of a default (forced) move constructor, where one object is moved to another one.

If you remove the last commented line, you will see this error below,

Is there a move constructor in a simple class, how can I delete it?

Note that, a simple empty C++ class is perfectly equivalent to default implementations (Rule of Five) in a class. A modern compiler is able to provide all these special member functions (default implementations). In example, this simple class below,

is exactly the same as the one below in modern C++.

If you don’t want this move constructer to be used in your objects, in other words you don’t want your objects to be moved, then you should delete it while the other special functions are in default as below,

If you need more technical details about the move constructor, it is explained by Bjarne Stroustrup and Lawrence Crowlcan in this publication here; https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3053.html

What Is A Deleted Implicitly declared Move Constructor In Modern C++ 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.

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 version.

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++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?

Artificial Intelligence TechC++C++17C++20Learn C++

How To Create Simple Generative AI Code In C++

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

How To Use The SVG Image Format With Skia In C++ Builder