c++中声明类student 新建student类型数组stu3 存入三位学生基本信息
时间: 2024-12-10 22:42:53 浏览: 17
详解C++编程中类的声明和对象成员的引用
在C++中,首先你需要声明一个名为`Student`的类,用于存储学生的基本信息,比如姓名、年龄和学号等。假设`Student`类有一个构造函数来接收这些信息。然后你可以按照以下步骤创建并初始化`Student`类型的数组:
```cpp
// 定义Student类
class Student {
public:
// 构造函数,接受姓名、年龄和学号作为参数
Student(std::string name, int age, std::string id) : name(name), age(age), student_id(id) {}
// 成员变量
std::string name;
int age;
std::string student_id;
private:
// 类的其他成员和私有方法(如果有的话)
};
int main() {
// 创建一个包含三个元素的Student类型数组
Student stu3[3];
// 分别为每个元素赋值,表示三位学生的基本信息
stu3[0] = Student("张三", 18, "001");
stu3[1] = Student("李四", 19, "002");
stu3[2] = Student("王五", 20, "003");
return 0;
}
```
在这个例子中,`stu3`是一个`Student`类型的动态数组,可以存储三个`Student`对象的信息。每行代表一个`Student`对象的实例,并通过构造函数设置其属性。
阅读全文