Deep Copy and Shallow Copy in Copy constructor
Deep Copy and Shallow Copy in Copy constructor
When we pass base data types (int, float etc.,) to a function a copy from the calling piece of
code to called function occurs. Now look at the below piece of code which does a simple
function call:
The copy I am taking occurs between x=>loc_X and y=>loc_Y. The content of variable x in main
function scope is copied to the variable loc_X, which is in the AddNumbers function scope.
This holds true for the next parameter loc_Y also. This copying is shown below:
OK. This is good for standard data types. A class can have one or more data members. How
the copy occurs between the data members is what we are going to deal with this article. When
the article progresses, I will explain Shallow Copy, Deep Copy and the need for our own copy
constructor.
2. ShalloC class
To demonstrate the need for the copy constructor, we will first define an example class. This
example class is ShalloC. This class contains only one integer pointer as private data member as
shown below:
private: int * x;
The constructor will create a memory location in a heap and copy the passed in value m to the
heap content. This code is shown below:
ShalloC(int m){
x = new int;
*x = m;
}
The Get and Set functions are used to get the heap memory content value and Set the heap
memory content respectively. Below is the code that sets and gets the integer heap memory
value:
Now you may get the idea of what the ShalloC class will do. At present it has a constructor that
creates a heap memory and in the destructor we clear the memory created as shown in the
below code:
~ShalloC(){
delete x;
}
In the Program main we created two Objects ob1 and ob2. The object ob2 is created using the
copy constructor. How? And where is the "copy constructor".? If you look at the
statement ShalloC ob2 = ob1 ; you clearly know that the ob2 is not yet created and in the
mean time ob1 is already created. Hence, a copy constructor is invoked. Even though the copy
constructor not implemented, the compiler will provide default copy constructor. Once both the
objects are created we print the values in ob1 and ob2.
When object ob1 is created, the memory to store an integer is allocated in the heap. Let us
assume the heap memory location address is 0x100B. This address is what stored in the x.
Remember x is an integer pointer. The value stored in the pointer variable x is the address
0x100B and the content of the address 0x100B is value 10. In the example, we want to deal
with the content of the address 0x100B we use the pointer de-referencing like *x. The compiler
provided copy constructor copies the address stored in the ob1(x) to ob2 (x). After the copy,
both pointers in ob1 and ob2 points to the same object. So changing the 0x100B through
ob1.SetX(12) is reflected back in the ob2. Now you got how the result is printing 12 for both the
objects ob1 and ob2.
How do we avoid the above-shown problem? We should perform the deep copy by
implementing our own copy constructor. So a user defined copy constructor is required to avoid
the problem of shallow copy. Below is the copy constructor:
//Sample 08: Introduce Copy Constructor and perform Deep Copy
ShalloC(const ShalloC& obj)
{
x = new int;
*x = obj.GetX();
}
Once we inject this copy constructor to the ShalloC class, the x pointer in the object ob2 will not
point to the same heap location 0x100B. The statement x = new int; will create the new heap
location and then copies the value of obj content to new heap location. The output of the
program, after introducing our own copy constructor is shown below:
• C++
// C++ program for the above approach
#include <iostream>
// Box Class
class box {
private:
int length;
int breadth;
int height;
public:
int height1)
length = length1;
breadth = breadth1;
height = height1;
void show_data()
<< endl;
};
// Driver Code
int main()
{
// Object of class Box
B1.show_data();
// COPY CONSTRUCTOR
box B2 = B1;
B2.show_data();
B3 = B1;
B3.show_data();
return 0;
Output:
Length = 14
Breadth = 12
Height = 16
Length = 14
Breadth = 12
Height = 16
Length = 14
Breadth = 12
Height = 16
Deep Copy:
In Deep copy, an object is created by copying data of all variables, and
it also allocates similar memory resources with the same value to the
object. In order to perform Deep copy, we need to explicitly define the
copy constructor and assign dynamic memory as well, if required. Also,
it is required to dynamically allocate memory to the variables in the
other constructors, as well.
Below is the implementation of the above approach:
• C++
// deep copy
#include <iostream>
// Box Class
class box {
private:
int length;
int* breadth;
int height;
public:
// Constructor
box()
// of the Box
int heig)
length = len;
*breadth = brea;
height = heig;
// of the Box
void show_data()
<< endl;
box(box& sample)
{
length = sample.length;
*breadth = *(sample.breadth);
height = sample.height;
// Destructors
~box()
delete breadth;
};
// Driver Code
int main()
box first;
// Set the dimensions
first.show_data();
second.show_data();
return 0;
Output:
Length = 12
Breadth = 14
Height = 16
Length = 12
Breadth = 14
Height = 16