-
Notifications
You must be signed in to change notification settings - Fork 14
/
13.27.cpp
59 lines (50 loc) · 904 Bytes
/
13.27.cpp
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
#include<string>
#include<iostream>
class HasPtr
{
public:
HasPtr(const std::string &s = std::string()) : ps(new std::string(s)), i(0), use(new std::size_t(1)) { }
HasPtr(const HasPtr & hp): ps(new std::string(*hp.ps)), i(hp.i), use(hp.use) { ++*use; }
std::ostream & print(std::ostream & os)
{
os << *ps << " " << i << " " << *use;
return os;
}
HasPtr & operator=(const HasPtr & rhs);
~HasPtr();
private:
std::string *ps;
int i;
std::size_t *use;
};
HasPtr::~HasPtr()
{
if(--*use == 0)
{
delete ps;
delete use;
}
}
HasPtr & HasPtr::operator=(const HasPtr & rhs)
{
++*rhs.use;
if(--*use == 0)
{
delete ps;
delete use;
}
ps = rhs.ps;
i = rhs.i;
use = rhs.use;
return *this;
}
int main()
{
HasPtr a("12345"), c("67890");
a.print(std::cout) << std::endl;
HasPtr b = a;
b.print(std::cout) << std::endl;
b = c;
b.print(std::cout) << std::endl;
return 0;
}