-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise_10.7.cpp
78 lines (64 loc) · 1.63 KB
/
Exercise_10.7.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
/*
* Exercise_10.7.cpp
*
* Created on: 29 Aug 2014
* Author: cohabo
*/
// Headers and Includes
/*
#include<iostream>
using namespace std;
// Types and Defines
typedef unsigned short USHORT;
// Class Declarations
// Simple Circle class declaration with one member variable: itsRadius
class SimpleCircle
{
public:
SimpleCircle(); // Default Constructor
SimpleCircle( USHORT x ); // Overloaded Constructor
SimpleCircle( const SimpleCircle & ); // Class Constructor: Copy Constructor
~SimpleCircle() {} // Default Destructor
USHORT GetItsRadius() const { return *itsRadius; } // Accessor Functions
void SetItsRadius( USHORT x ) { *itsRadius = x; } // Accessor Functions
const SimpleCircle& operator++(); // Prefix Increment operator
const SimpleCircle operator++(int); // Postfix Increment Operator
SimpleCircle operator=( const SimpleCircle & ); // Assignment Operator
private:
USHORT * itsRadius; // Member Variable
};
// Class Definition
SimpleCircle::SimpleCircle()
{
itsRadius = new USHORT (5);
}
SimpleCircle::SimpleCircle( USHORT x )
{
itsRadius = new USHORT (x);
}
SimpleCircle::SimpleCircle( const SimpleCircle & rhs )
{
itsRadius = new USHORT;
*itsRadius = rhs.GetItsRadius();
}
const SimpleCircle& SimpleCircle::operator++()
{
++itsRadius;
return *this;
}
const SimpleCircle SimpleCircle::operator++( int )
{
SimpleCircle temp(*this);
++itsRadius;
return temp;
}
SimpleCircle SimpleCircle::operator=( const SimpleCircle & rhs )
{
if ( this == &rhs )
return *this;
delete itsRadius;
itsRadius = new USHORT;
*itsRadius = rhs.GetItsRadius();
return *this;
}
*/