最新回答 / 蝶梦疏妄
int main(){ string name; cout<<"please input your name :"<<endl; getline(cin,name); if(name.empty()) { cout<<"are you really input any words?"<<endl; system("pause"); return 0; } cout<<"please wait"<<endl; system("sy...
2017-01-12
最赞回答 / ohmydragon
// 我没有遇到这个问题,代码是这样的。#include <iostream>#include <stdlib.h>#include <string>using namespace std;int main(void){ string name; cout << "Please input your name:"; getline(cin, name); if(name.empty()) { cout <&l...
2017-01-12
最赞回答 / ArthasMenethil0
构造函数是在类中使用的,用来解决封装的问题,结构体没必要用,你的student如果是类的话,就可以用。是否只能用构造函数,取决于你的数据是公有的还是私有的,私有的必须用,因为数据被封装了,公有的直接赋值就行了。
2017-01-06
最新回答 / 杨凯凯
cout<<t.setNamae()<<" "<<t.setGender()<<" "<<t.setAge()<<""<<end;且不说你这最后没使用t.getName()和t.getGender()和t.getAge()!!!!! 就第一个t.setNamae(),拼写就不对呀!!!!!!!!!!!!!!
2016-12-30
最赞回答 / 慕前端7124754
拷贝构造函数那块是不是要用初始化列表Teacher::Teacher(const Teacher& tea):m_strName(_name),m_iAge(_age),m_iNumber(m){}
2016-12-28