-
Notifications
You must be signed in to change notification settings - Fork 361
/
Copy paththis.cpp
74 lines (69 loc) · 1.66 KB
/
this.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
#include <iostream>
#include <cstring>
using namespace std;
class Student
{
private:
char * name;
int born;
bool male;
public:
Student()
{
name = new char[1024]{0};
born = 0;
male = false;
cout << "Constructor: Person()" << endl;
}
Student(const char * initName, int initBorn, bool isMale)
{
name = new char[1024];
setName(initName);
born = initBorn;
male = isMale;
cout << "Constructor: Person(const char, int , bool)" << endl;
cout << "this = " << static_cast<void *>(this) << endl;
}
~Student()
{
cout << "To destroy object: " << name << endl;
delete [] name;
}
void setName(const char * s)
{
if (s == NULL)
{
std::cerr << "The input is NULL." << std::endl;
return;
}
size_t len = 1024 - 1;
strncpy(name, s, len);
name[len] = '\0';
}
void setBorn(int b)
{
if (b >= 1990 && b <= 2020 )
born = b;
else
std::cerr << "The input b is " << b << ", and should be in [1990, 2020]." << std::endl;
}
// the declarations, the definitions are out of the class
void setGender(bool isMale);
void printInfo();
};
void Student::setGender(bool isMale)
{
male = isMale;
}
void Student::printInfo()
{
std::cout << "Name: " << name << std::endl;
std::cout << "Born in " << born << std::endl;
std::cout << "Gender: " << (male ? "Male" : "Female") << std::endl;
}
int main()
{
Student * s = new Student("Tom", 2000, true);
cout << "s = " << static_cast<void *>(s) << endl;
return 0;
}