最新回答 / KellyCayne
不一定是string型,看函数最后返回的数据类型,如果返回的是int数据,则get函数是int类型,只有get函数返回string型的数据时,它才是string类型
2019-11-06
初始化列表操作const也没啥用啊,第一次实例化const定义的值就固定了,再次实例化同一类时,const定义的值永远是第一次的
2019-10-27
int main(void)
{
// 通过new方式实例化对象*stu
Student *stu = new Student;
// 更改对象的数据成员为“慕课网”
stu->setName("慕课网");
// 打印对象的数据成员
stu->getName();
return 0;
}
{
// 通过new方式实例化对象*stu
Student *stu = new Student;
// 更改对象的数据成员为“慕课网”
stu->setName("慕课网");
// 打印对象的数据成员
stu->getName();
return 0;
}
using namespace std;
class Student
{
public:
Student(){}
Student(string _name):m_strName(_name){}
Student(const Student& stu){}
~Student(){}
void setName(string _name){m_strName = _name;}
string getName(){cout << m_strName << endl; }
private:
string m_strName;
};
class Student
{
public:
Student(){}
Student(string _name):m_strName(_name){}
Student(const Student& stu){}
~Student(){}
void setName(string _name){m_strName = _name;}
string getName(){cout << m_strName << endl; }
private:
string m_strName;
};