#include <iostream>
#include <string>
using namespace std;
/**
* 定义类:Student
* 数据成员:名字、年龄
*/
class student
{
public:
// 定义数据成员名字 m_strName 和年龄 m_iAge
string m_strName;
m_iAge;
};
int main()
{
// 实例化一个Student对象stu
student.stu;
// 设置对象的数据成员
stu.m_strName = "慕课网";
stu.m_iAge = 2;
// 通过cout打印stu对象的数据成员
cout << stu.m_strName<< " " << stu.m_Age<< endl;
return 0;
}
我没用int 为什么也行?
天将明96
相关分类