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

What Is The Rule Of Five In Modern C++?

What Is The Rule Of Five In Modern C++

In C++, classes and structs are one of the most important parts of modern app development. In modern C++, there are some rules to support the principles of programming, one of which is the Rule of Five in C++ (also known as the Rule of Six, including constructor). In this post, we explain What is the Rule of Five in C++ with examples.

C++ is an Object-Oriented Programming (OOP) language. OOP is a way to integrate with objects which can contain data in the form of attributes or properties of objects, and code blocks in the form of procedures such as methods and functions of objects. Most developers find that using OOP techniques help them to map real-world behavior and bring an organizational structure to data. These attributes and methods are variables and functions that belong to the class – part of the class’s code and they are generally referred to as class members.

First, let’s refresh our memory about the fact that Resource Acquisition Is Initialization (RAII) in OOP programming, and the Single Responsibility Principle and how that relates to the Rule of Zero in C++.

What is resource acquisition in C++?

The principle of Resource Acquisition Is Initialization (RAII) term used in several OOP programming languages, which relates to the ability to manage resources, such as memory, through the copy and move constructors, destruction, and assignment operators. RAII is about the declaration and use of destructors, copy-move operators, and memory management in these members and methods. These cause new rules in development.

What is the single responsibility principle in C++?

The Single Responsibility Principle (SRP) is a computer programming principle that states “A module should be responsible to one, and only one, actor.” This principle exposes a rule for the classes in C++, called Rule of Zero. Now, let’s see what the Rule of Zero in C++ is.

What is the rule of zero in C++?

The Rule of Zero means that, if all members have default member functions, no further work is needed. This is the simplest and cleanest semantics of programming. The compiler provides default implementations for all of the default member functions if there are no special member functions that are user-defined. You should prefer the case where no special member functions need to be defined

Here is more about Rule of Zero with C++ Examples,

What is the rule of three in C++?

The Rule of Three states that if you need to define a class that has any of the following special member functions a copy constructor, copy assignment operator, or destructor then usually you need to define all these three special member functions. So, these 3 special member functions below should be defined if you have at least one of them defined,

  • Copy constructor
  • Copy assignment operator
  • Destructor

Here is more about Rule of Three with C++ examples.

What is the rule of five in C++?

The Rule of Three is outdated after C++11. C++11 comes with two additional special members of move semantics: the move constructor and the move assignment operator. So, there is another rule, the Rule of Five.

The Rule of Five states that if you need to define any of the five special members below,

  • copy constructor,
  • copy assignment operator,
  • move constructor,
  • move assignment operator,
  • or a destructor

then you probably need to define or delete (or at least consider) all five of them.

Actually, this could be called “The Rule of Six“, because the default constructor should be also declared if there is a move constructor, in the Rule of Five it is excluded because it is a special member. Thus, you can add the constructor to this list.

If you have a compiler that is C++11 or over then if you need to define any of the five (or six) special members as in examples below.

Is there a simple example of the rule of five in C++?

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

Is there an example of the rule of five with defined members in C++?

As you see in modern C++ these 5 special members are automatically generated as a default for each new class. If you need to define one of them, you should define all of these members as in this example below.

Is there a full example of how to use the rule of five in C++?

Here is a full example about the rule of five in modern C++, you can see how you can use each of them in the main part.

As you see in modern C++ these 5 special members are automatically generated as a default in simple class, if you need to define one of them you should define all of them.

What Is The Rule Of Five 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