最新回答 / qq_帶著時(shí)光去旅行_0
void是無類型,get因?yàn)橐@取這個(gè)內(nèi)容所以要確定這個(gè)內(nèi)容的類型?如果獲取的是數(shù)字就是Int了.
2019-12-01
最新回答 / KellyCayne
不一定是string型,看函數(shù)最后返回的數(shù)據(jù)類型,如果返回的是int數(shù)據(jù),則get函數(shù)是int類型,只有g(shù)et函數(shù)返回string型的數(shù)據(jù)時(shí),它才是string類型
2019-11-06
初始化列表操作const也沒啥用啊,第一次實(shí)例化const定義的值就固定了,再次實(shí)例化同一類時(shí),const定義的值永遠(yuǎn)是第一次的
2019-10-27
最新回答 / 小御姐
Student stu1;Student stu3(stu1);//調(diào)用拷貝重載函數(shù),該語句的效果相當(dāng)于Student stu3
2019-10-22
int main(void)
{
// 通過new方式實(shí)例化對(duì)象*stu
Student *stu = new Student;
// 更改對(duì)象的數(shù)據(jù)成員為“慕課網(wǎng)”
stu->setName("慕課網(wǎng)");
// 打印對(duì)象的數(shù)據(jù)成員
stu->getName();
return 0;
}
{
// 通過new方式實(shí)例化對(duì)象*stu
Student *stu = new Student;
// 更改對(duì)象的數(shù)據(jù)成員為“慕課網(wǎng)”
stu->setName("慕課網(wǎng)");
// 打印對(duì)象的數(shù)據(jù)成員
stu->getName();
return 0;
}
2019-10-14
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;
};
2019-10-14