对于这个学校项目,我们需要一个卡片类,它包含 int rank、char color 和两个 char* 到 C 样式的字符串(用于操作和位置)。我们需要包含以下内容的类:
1)卡片默认构造函数(默认排名和位置)
2)卡参数化构造函数(所有数据成员作为参数)
3) 卡片拷贝构造函数
我不知道如何在课堂上包含所有这些。我不断收到编译器错误,例如“候选人期望_参数,_给定”,候选人是:”然后列出我所有的构造函数。
我不知道如何在我的类中声明它们,如何在它们的实现中命名它们,以及如何调用它们。
现在我有:
class card
{
public:
card(const int, const char*);
~card();
card(const card&);
card(const int, const char, const char*, const char*);
void copyCard(const card&);
void print();
void setColor(const char);
void setRank(const int);
void setAction(const char*);
void setLocation(const char*);
char getColor();
int getRank();
char* getAction();
char* getLocation();
private:
char color;
int rank;
char* action;
char* location;
};
我的构造函数:
card::card(const int newRank = -1, const char* newLocation = "location"){
color='c';
rank=newRank;
action = new char[7];
stringCopy(action, "action");
location = new char[9];
stringCopy(location, newLocation);
}
card::card(const card &newCard){
int length;
color = newCard.color;
rank = newCard.rank;
length = stringLength(newCard.action);
action = new char[length+1];
length = stringLength(newCard.location);
location= new char[length+1];
stringCopy(action, newCard.action);
stringCopy(location, newCard.location);
}
card::card(const int newRank, const char newCol, const char* newAct,
const char* newLoc){
int length;
color = newCol;
rank = newRank;
length = stringLength(newAct);
action = new char[length+1];
length = stringLength(newLoc);
location = new char[length+1];
stringCopy(action, newAct);
stringCopy(location, newLoc);
}
我在调用构造函数的地方得到编译器错误(到目前为止):
card first;
和
miniDeck = new card[ 4 ];
我知道我需要告诉编译器哪个构造函数是哪个。但是怎么做?