-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmart_ptr.cpp
More file actions
57 lines (47 loc) · 808 Bytes
/
Copy pathsmart_ptr.cpp
File metadata and controls
57 lines (47 loc) · 808 Bytes
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
#include <stdio.h>
#include <iostream>
using std::cout;
template <typename T>
class Smart {
T *obj;
int *pCount;
void decrement() {
--(*pCount);
if(*pCount == 0) {
cout << "Deleting: " << *obj << "\n";
delete obj;
delete pCount;
obj=NULL;
pCount=NULL;
}
}
public:
Smart(T *_obj) : obj(_obj), pCount(new int(1)) {}
~Smart() {
decrement();
}
Smart<T> operator=(const Smart<T> &o) {
decrement();
obj = o.obj;
pCount = o.pCount;
++(*pCount);
return *this;
}
Smart(const Smart<T> &o) {
obj = o.obj;
pCount = o.pCount;
++(*pCount);
}
void print() {
cout << "Item: " << *obj << "\n";
}
};
Smart<int> getPtr() {
return Smart<int>(new int(3));
}
int main() {
Smart<int> ptr = getPtr();
ptr.print();
ptr = Smart<int>(new int(0));
ptr.print();
}