使用c加加首先创建一个 student类,利用setName(方 法设置xm属性(设成自己的 名字),利用setBi0方法设置 bi属性(设成所在班级), 然 后创建一个Student对象,输 出自己的名字和班级,运行这 个测试程序查看输出结果。
时间: 2024-02-17 15:02:39 浏览: 55
一个基于redbase在windows下利用C++语言实现了一个简单的数据库。.zip
好的,以下是代码实现:
```c++
#include <iostream>
#include <string>
using namespace std;
class Student {
private:
string xm;
string bi;
public:
void setName(string name) {
xm = name;
}
void setBio(string bio) {
bi = bio;
}
void printInfo() {
cout << "我的名字是:" << xm << endl;
cout << "我的班级是:" << bi << endl;
}
};
int main() {
Student student;
student.setName("你的名字");
student.setBio("你的班级");
student.printInfo();
return 0;
}
```
你可以将你的名字和班级分别替换到 `setName` 和 `setBio` 方法的参数位置上,然后运行这段代码,即可看到输出结果。
阅读全文