-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeepvsshallowcopy.cpp
More file actions
61 lines (56 loc) · 1.14 KB
/
deepvsshallowcopy.cpp
File metadata and controls
61 lines (56 loc) · 1.14 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <iostream>
#include<cstring>
using namespace std;
class mystr
{
int len;
char* data;
public:
mystr(const char* p)
{
len = strlen(p);
data = new char[len+1];
strcpy( data, p);
}
void change(const char* p)
{
delete[] data;
len = strlen(p);
data = new char[len+1];
strcpy( data, p);
}
/*mystr(const mystr& src)
{
len = src.len;
data = new char[len+1];
strcpy(data, src.data);
}
mystr& operator =(const mystr& src)
{
len = src.len;
data = new char[len+1];
strcpy(data, src.data);
return *this;
}*/
void showdata()
{
cout<<"info:"<<data<<endl;
}
};
int main ()
{
mystr x("Abc");
x.showdata();
mystr y=x;
y.showdata();
mystr z("pqr");
z = x;
z.showdata();
/* if we comment assignment and copyconstructor then its example of shallow copy in that case all x, y and z object points to same data memory location*/
cout<<"-------------------------------"<<endl;
x.change("www");
x.showdata();
y.showdata();
z.showdata();
return 0;
}