-
Notifications
You must be signed in to change notification settings - Fork 246
/
13.30.cpp
68 lines (55 loc) · 1.43 KB
/
13.30.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
58
59
60
61
62
63
64
65
66
67
68
#include <string>
#include <iostream>
// Valuelike version
class HasPtr {
friend void swap(HasPtr &, HasPtr &);
public:
HasPtr(const std::string &s = std::string())
: ps(new std::string(s)), i(0) {}
HasPtr(const HasPtr &ori)
: ps(new std::string(*ori.ps)), i(ori.i) {}
~HasPtr();
HasPtr &operator=(const HasPtr &rhs);
const std::string &get() const { return *ps; }
void set(const std::string &s) { *ps = s; }
private:
std::string *ps;
int i;
};
void swap(HasPtr &lhs, HasPtr &rhs) {
std::cout << "Swap between <" << *lhs.ps << "> and <"
<< *rhs.ps << ">" << std::endl;
using std::swap;
swap(lhs.ps, rhs.ps);
swap(lhs.i, rhs.i);
}
HasPtr::~HasPtr() {
delete ps;
}
HasPtr &HasPtr::operator=(const HasPtr &rhs) {
// This copy-assignment operator is correct even if the object is assigned to
// itself. See ex13.11 for the wrong version.
auto newps = new std::string(*rhs.ps);
delete ps;
ps = newps;
i = rhs.i;
return *this;
}
int main() {
HasPtr hp1 = "World";
HasPtr hp2 = hp1;
HasPtr hp3;
hp3 = hp1;
hp1.set("Hello");
std::cout << hp1.get() << std::endl;
std::cout << hp2.get() << std::endl;
std::cout << hp3.get() << std::endl;
hp1 = hp1;
std::cout << "After `hp1 = hp1`: " << hp1.get() << std::endl;
swap(hp1, hp2);
std::cout << hp1.get() << std::endl;
std::cout << hp2.get() << std::endl;
swap(hp1, hp1);
std::cout << hp1.get() << std::endl;
return 0;
}