我在显示子类中的一些字符串时遇到问题。我试图用一个函数来做,但我不确定为什么我没有得到这些字符串的内容。
class Employee{
string FN, LN, JT;
double Income;
public:
char const *getters(){
return FN.data(), LN.data(), JT.data(); //=========>getting the content of strings
}
virtual char const *getAccess()=0;
Employee(char const *fn, char const *ln, char const *jt, double inc){
if(fn==0) throw Exception(1, "Sorry, First Name is Null");
if(ln==0) throw Exception(2, "Sorry, Last Name is Null");
if(jt==0) throw Exception(3, "Sorry Job Title is Null");
if(inc<=0) throw Exception(4, "Sorry, The Income is Null");
FN=fn;
LN=ln;
JT=jt;
Income=inc;
}
};
class Programmer: public Employee{
public:
Programmer(char const *fn, char const *ln, double inc):
Employee(fn,ln,"Programmer", inc)
{}
char const *getAccess(){
return "You have access to Meeting Room + Development Office";
}
};
//=========The Main============
int main(){
Employee *acc[3];
try{
acc[0]=new Programmer("Juan", "Villalobos", 60000);
acc[1]=new Director("Jorge", "Villabuena", 70000);
acc[2]=new ProdSupport("Pedro", "Villasmil", 80000);
for(int i=0; i<3; i++){
cout << acc[i]->getters() << endl; //=============>Displaying the strings
cout << acc[i]->getAccess() << endl;
}
} catch(Exception acc){
cout << "Err:" << acc.getErrCode() << " Mess:" << acc.getErrMess() << endl;
}
return 0;
}
所以,我猜我的函数没有做我想要的,即显示名字和姓氏。我究竟做错了什么?