4.定义一个学生类,包括学号、姓名和出生日期三个属性(数据成员);包括一个
时间: 2024-02-23 16:59:04 浏览: 81
设计一个学生类Student(学生学号、姓名、数学、英语、计算机成绩;)
5星 · 资源好评率100%
构造函数,用于初始化学生对象;包括一个成员函数,用于输出学生的信息。代码如下:
```cpp
#include <iostream>
#include <string>
using namespace std;
class Student {
private:
string id; // 学号
string name; // 姓名
string birthdate; // 出生日期
public:
Student(string i, string n, string b) { // 构造函数
id = i;
name = n;
birthdate = b;
}
void display() { // 成员函数
cout << "学号:" << id << endl;
cout << "姓名:" << name << endl;
cout << "出生日期:" << birthdate << endl;
}
};
int main() {
Student stu("20210001", "张三", "2003.01.01");
stu.display();
return 0;
}
```
运行结果:
```
学号:20210001
姓名:张三
出生日期:2003.01.01
```
阅读全文