#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
string m_strName;
int m_iAge;
};
int main()
{
// 实例化一个Student对象stu
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:
string m_strName;
int m_iAge;
};
int main()
{
// 实例化一个Student对象stu
Student stu;
stu.m_strName = "慕课网";
stu.m_iAge = 2;
cout << stu.m_strName << "," << stu.m_iAge<< endl;
return 0;
}
已采纳回答 / 慕虎0549817
慕课的编译器毕竟是简易的,无法接受一些旧的写法之类的,就像我们学校的OJ平台同样无法像VS2012那么好用,你代码发上来我们大家看看具体什么问题吧
2017-05-26
已采纳回答 / 大力出奇迹丶
str指针指向的是一个类Student,而不是字符数组,所以可以直接写delete str;个人认为delete str;只是把之前申请的,str所指向的内存区域归还给了系统,并没有删除str指针,赋值NULL是为了防止str指针指向其他“不可描述”的区域,例如一些存放系统配置的区域,造成程序崩溃
2017-05-26