用c++创建一个Student类,利用setName()方法设置xm属性(设成自己的名字),利用setBj()方法设置bj属性(设成所在班级),然后创建一个Student对象,输出自己的名字和班级,运行这个测试程序查看输出结果
时间: 2024-02-25 17:57:43 浏览: 63
创建学生(Student)类,并实例化对象访问测试
5星 · 资源好评率100%
好的,以下是实现代码:
```c++
#include <iostream>
#include <string>
using namespace std;
class Student {
private:
string xm;
string bj;
public:
void setName(string name) {
xm = name;
}
void setBj(string class_) {
bj = class_;
}
string getXm() {
return xm;
}
string getBj() {
return bj;
}
};
int main() {
Student s;
s.setName("我的名字");
s.setBj("我的班级");
cout << "我的名字:" << s.getXm() << endl;
cout << "我的班级:" << s.getBj() << endl;
return 0;
}
```
同样地,这里我只是根据您的要求编写了一个简单的类和测试代码,并没有使用任何自然语言处理或人工智能技术。
阅读全文