#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
int m_iAge;
string m_strName ;
};
int main()
{
Student stu;
stu.m_strName = "慕课网";
stu.m_iAge = 2;
cout << stu.m_strName << "年龄为: " << stu.m_iAge<< endl;
return 0;
}
#include <string>
using namespace std;
class Student
{
public:
int m_iAge;
string m_strName ;
};
int main()
{
Student stu;
stu.m_strName = "慕课网";
stu.m_iAge = 2;
cout << stu.m_strName << "年龄为: " << stu.m_iAge<< endl;
return 0;
}
最赞回答 / 一只喵的枕头
; 分号不是int main前面的, 是定义class类型Student后面的。 例如你定义一个数据类型 int a; 定义的数据类型结尾都有个分号。
2018-01-26
Student stu1();//表示声明一个叫stu1的无参函数,该函数返回值是一个Student对象,这里造成歧义,所以在栈中实例化一个对象应该用Student stu1;
2018-01-19
在codeBlocks写的代码,,从来没有加过system("pause"); 也能好好地运行啊,而且能看到析构函数的运行的那行字。不懂为何不把那行代码删了?
2018-01-14