-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerson.cpp
145 lines (117 loc) · 3.09 KB
/
Person.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
@file Person.cpp
@author Sean Resor
@date 4/12/21
*/
#pragma once
#pragma warning(disable:4996)
#include <iostream>
#include "Person.h"
// Default constructor for the Person class
person::person()
{
firstLength = 0;
lastLength = 0;
firstName = new char[1] { '\0' };
lastName = new char[1] { '\0' };
}
// Constructor for the Person class
person::person(const char* fN, const char* lN)
{
// Sets the variables for the length of the first and last name
firstLength = 0;
lastLength = 0;
// Increments the variable for the length of the first name based on passed char pointer
while (fN[firstLength] != '\0')
{
firstLength++;
}
// Increments the variable for the length of the last name based on passed char pointer
while (lN[lastLength] != '\0')
{
lastLength++;
}
// Assigns a new pointer variable for the first name
firstName = new char[firstLength + 1];
// Copies the values of the passed char pointer into the new variable
for (int i = 0; i < firstLength; i++)
{
firstName[i] = fN[i];
}
// Adds a null character onto the end of the array
firstName[firstLength] = '\0';
// Assigns a new pointer variable for the last name
lastName = new char[lastLength + 1];
// Copies the values of the passed char pointer into the new variable
for (int i = 0; i < lastLength; i++)
{
lastName[i] = lN[i];
}
// Adds a null character onto the end of the array
lastName[lastLength] = '\0';
}
// Destructor for the Person class
person::~person()
{
delete[] firstName;
delete[] lastName;
}
// Show function to print the first and last names
void person::Show()
{
cout << "The person's name is: ";
cout << firstName << " " << lastName << endl << endl;
}
// Getter for the first name
char* person::getFirstName()
{
return firstName;
}
// Getter for the last name
char* person::getLastName()
{
return lastName;
}
// Operator overload for the assignment operator
person& person::operator=(person const& x)
{
// Deletes the pointer variables if they exist
delete[] firstName;
delete[] lastName;
firstLength = x.firstLength;
lastLength = x.lastLength;
// Assigns a new pointer variable for the first name
firstName = new char[x.firstLength];
// Copies the letters for the first name from the parameter object
for (int i = 0; i < x.firstLength; i++)
{
firstName[i] = x.firstName[i];
}
// Assigns a new pointer variable for the last name
lastName = new char[x.lastLength];
// Copies the letters for the last name from the parameter object
for (int i = 0; i < x.lastLength; i++)
{
lastName[i] = x.lastName[i];
}
return *this;
}
person::person(const person& x)
{
firstLength = x.firstLength;
lastLength = x.lastLength;
// Assigns a new pointer variable for the first name
firstName = new char[x.firstLength];
// Copies the letters for the first name from the parameter object
for (int i = 0; i < x.firstLength; i++)
{
firstName[i] = x.firstName[i];
}
// Assigns a new pointer variable for the last name
lastName = new char[x.lastLength];
// Copies the letters for the last name from the parameter object
for (int i = 0; i < x.lastLength; i++)
{
lastName[i] = x.lastName[i];
}
}