#include <iostream>
#include <string>
using namespace std;
/**
* 定义类:Student
* 数据成员:名字、年龄
*/
class student
{
public:
// 定义数据成员名字 m_strName 和年龄 m_iAge
int m_strName;
string 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 string 还换位置为啥就不行?
慕的地6079101
snowmanJS
Tpsopf
Uchiha_Obito
相关分类