-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListing_10.5_Copy_constructors.cpp
79 lines (65 loc) · 1.34 KB
/
Listing_10.5_Copy_constructors.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
69
70
71
72
73
74
75
76
77
78
79
/*
* Listing_10.5.cpp
* Copy Constructors
*
* Created on: 19 Sep 2013
* Author: cohabo
*/
/*
// Headers and Includes
#include<iostream>
using namespace std;
// Types and Defines
// Class Declarations
class CAT
{
public:
CAT();
CAT(const CAT &);
~CAT();
int GetAge() const {return *itsAge;}
int GetWeight() const {return *itsWeight;}
void SetAge(int age) {*itsAge = age;}
private:
int *itsAge;
int *itsWeight;
};
// Class Definitions
CAT::CAT()
{
itsAge = new int(5);
itsWeight = new int(9);
}
CAT::CAT(const CAT & rhs)
{
itsAge = new int(rhs.GetAge());
itsWeight = new int(rhs.GetWeight());
}
CAT::~CAT()
{
delete itsAge;
*itsAge = 0;
delete itsWeight;
*itsWeight = 0;
}
int main()
{
CAT frisky;
cout <<"frisky's age is " <<frisky.GetAge() <<endl;
cout <<"Setting frisky's age to 6" <<endl;
frisky.SetAge(6);
cout <<"\nCreating boots from frisky " <<endl;
CAT boots(frisky);
cout <<"boots' age is " <<boots.GetAge() <<endl;
cout <<"frisky's age is " <<frisky.GetAge() <<endl;
cout <<"\nSetting frisky's age to 7" <<endl;
frisky.SetAge(7);
cout <<"boots' age is " <<boots.GetAge() <<endl;
cout <<"frisky's age is " <<frisky.GetAge() <<endl;
cout <<"\nSetting boots' age to 8" <<endl;
boots.SetAge(8);
cout <<"boots' age is " <<boots.GetAge() <<endl;
cout <<"frisky's age is " <<frisky.GetAge() <<endl;
return 0;
}
*/