-
Notifications
You must be signed in to change notification settings - Fork 14
/
13.30.cpp
56 lines (47 loc) · 1.02 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
#include<string>
#include<iostream>
class HasPtr
{
friend void swap(HasPtr & lhs, HasPtr & rhs);
public:
HasPtr(const std::string &s = std::string()) : ps(new std::string(s)), i(0) { }
HasPtr(const HasPtr & hp): ps(new std::string(*hp.ps)), i(hp.i) { }
std::ostream & print(std::ostream & os)
{
os << *ps << " " << i;
return os;
}
HasPtr & operator=(const HasPtr & rhs);
~HasPtr() { delete ps; }
private:
std::string *ps;
int i;
};
HasPtr & HasPtr::operator=(const HasPtr & rhs)
{
std::string * newp = new std::string(*rhs.ps);
delete ps;
ps = newp;
i = rhs.i;
return *this;
}
void swap(HasPtr & lhs, HasPtr & rhs)
{
using std::swap;
swap(lhs.ps, rhs.ps);
swap(lhs.i, rhs.i);
std::cout << "void swap(HasPtr & lhs, HasPtr & rhs)" << std::endl;
}
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;
swap(a,c);
a.print(std::cout) << std::endl;
c.print(std::cout) << std::endl;
return 0;
}