首先创建一个 student类,利用setName(方 法设置xm属性(设成自己的 名字),利用setBi0方法设置 bi属性(设成所在班级), 然 后创建一个Student对象,输 出自己的名字和班级,运行这 个测试程序查看输出结果。
时间: 2024-02-17 11:03:29 浏览: 67
创建学生(Student)类,并实例化对象访问测试
5星 · 资源好评率100%
好的,以下是实现代码:
```c++
#include <iostream>
#include <string>
using namespace std;
class Student {
public:
void setName(string name) {
this->name = name;
}
void setBio(string bio) {
this->bio = bio;
}
string getName() {
return name;
}
string getBio() {
return bio;
}
private:
string name;
string bio;
};
int main() {
Student s;
s.setName("Your_Name"); // 请将 Your_Name 替换成你的名字
s.setBio("Your_Class"); // 请将 Your_Class 替换成你所在的班级
cout << "My name is " << s.getName() << endl;
cout << "I'm in class " << s.getBio() << endl;
return 0;
}
```
这个程序会创建一个 `Student` 类,利用 `setName` 方法设置 `name` 属性(设成自己的名字),利用 `setBio` 方法设置 `bio` 属性(设成所在班级),然后创建一个 `Student` 对象,输出自己的名字和班级。
你只需要将 `Your_Name` 和 `Your_Class` 替换成你的名字和班级,并编译运行这个程序即可查看输出结果。
阅读全文