Do you want to declare a copy constructor in a implicit way ? Implicitly-Declared Copy Constructor helps you to do this, here is the full post;
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. 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. Here is a simple constructor class example below,
1 2 3 4 5 6 7 8 9 10 |
class myclass { public: myclass() { std::cout << "myclass is constructed!\n"; }; }; |
There are different constructor types in classes and the Copy Constructor is one of these. Copy Constructors not only used in classes but also used with struct and union data types.
The Copy Constructor in classes (class_name) is a non-template constructor whose first parameter is class_name&, const class_name&, volatile class_name&, or const volatile class_name& . It can be used with no other parameters or with the rest of the parameters all have default values.
The Copy Constructor is a constructor type for classes that class_name must name the current class, or it should be a qualified class name when it is declared at namespace scope or in a friend declaration.
Implicitly-Declared Copy Constructor
In C++, the compiler declares a Copy Constructor as a non-explicit inline public member of its class If a copy constructor is not defined for a class type (struct, class, or union), We can Implicitly declare a copy constructor when defining a new class. Remember that copy constructor has this syntax,
1 2 3 4 5 6 |
class_name (const class_name& ) // Copy Constructor { }; |
and this Copy Constructor will be declared implicitly when declaring a new class as below,
1 2 3 4 5 6 |
class new_class_name : access_type class_name { // Copy Constructor will be Declared Implicitly }; |
Here is an example,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
class myclass { public: myclass() // Default Constructor { }; myclass(const myclass& ) // Copy Constructor { }; }; class my_otherclass : public myclass // Implicitly-Declared Copy Constructor { }; |
Here is the full example,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
#include <iostream> class myclass { public: int param; myclass() // Default Constructor { }; myclass(const myclass& ) // Copy Constructor { }; }; class my_otherclass : public myclass // Implicitly-Declared Copy Constructor { }; int main() { myclass class1; class1.param=100; std::cout << class1.param << '\n' ; // Using Implicitly-Declared Copy Constructor my_otherclass class2; std::cout << class2.param << '\n' ; getchar(); return 0; } |
output will be like this.
1 2 3 4 |
100 4358220 |
As in this example, Implicit declared copy constructor does not copy values.
If there are user-defined copy constructors, user can force the generation of the implicitly declared copy constructor with the ‘default’ keyword. Both Implicitly-declared or defaulted copy constructors have an exception specification. Using forced copy construction in myclass as below also outs same results;
1 2 3 |
myclass(const myclass& )= default; |
Get started building powerful apps with C++Builder!
Design. Code. Compile. Deploy.
Start Free Trial
Free C++Builder Community Edition