c++定义一个学生类,并在主函数声明学生类的一个对象
时间: 2023-05-18 20:05:34 浏览: 110
声明Student类
以下是一个简单的学生类的定义,包括姓名、年龄和成绩三个属性:
```c++
#include <iostream>
#include <string>
using namespace std;
class Student {
public:
string name;
int age;
double score;
};
int main() {
Student stu; // 声明一个学生对象
stu.name = "Tom";
stu.age = 18;
stu.score = 90.5;
cout << "Name: " << stu.name << endl;
cout << "Age: " << stu.age << endl;
cout << "Score: " << stu.score << endl;
return 0;
}
```
在主函数中,我们声明了一个名为`stu`的学生对象,并对其属性进行了赋值。最后输出了学生的姓名、年龄和成绩。
阅读全文