就不能通过!自己写的没问题,提交不通过,照着参考打出来的,也不通过,为什么???
#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
Student()
{
m_strName = "";
}
Student(string _name)
{
m_strName = _name;
}
Student(const Student &stu)
{
}
~Student()
{
}
void setName(string _name);
string getName();
private:
string m_strName;
}
void Student::setName(string _name)
{
m_strName = _name;
}
string Student::getName()
{
return m_strName;
}
int main(void)
{
// 通过new方式实例化对象*stu
Student *stu = new Student;
// 更改对象的数据成员为“慕课网”
stu->setName("慕课网");
// 打印对象的数据成员
cout << stu->getName() << endl;
delete stu;
stu = NULL;
return 0;
}