-
Notifications
You must be signed in to change notification settings - Fork 2
/
Student.cpp
49 lines (39 loc) · 1023 Bytes
/
Student.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
#include "Student.h"
//实现方法
void Student::setAge(int age) {
this->age = age;
}
void Student::setName(char *name) {
//C++ 对象指向得是一个指针
//调用一级指针得成员
this->name = name;
}
char *Student::getName() {
return name;
}
int Student::getAge() {
return age;
}
//无参构造函数
Student::Student(){
cout << "无参数构造函数" << endl;
}
Student::Student(char * name) {
cout << "一个参数构造函数" << endl;
this->name = name;
}
Student::Student(char * name,int age) {
cout << "二个参数构造函数" << endl;
this->name = name;
}
//析构函数 Student对象得临终遗言 Student对象回收,做释放操作;
Student::~Student() {
cout << "析构函数执行" << endl;
//??? ????????ó?? -> NULL ???????????
}
// 构造函数拷贝
Student::Student(const Student &student) {//???????????????????????
cout << " 构造函数拷贝 " << endl;
this->name = student.name;
this->age = student.age;
}