已采纳回答 / 无柳先生V
改成:cout << stu.getName() << " " << stu.getGender() << " " << stu.getScore() << endl;
2016-03-28
最赞回答 / Dxu
成员函数的参数错了,你写的是string_name,这中间要加个空格 string _name,类型是string,形参是_name.下面几处传参的地方都少了空格
2016-03-26
最新回答 / 笔墨遥仙
int getAge(){return age;}string getName(){return name;}cout << getAge() << getName()<<endl;
2016-03-18