0

对于这个学校项目,我们需要一个卡片类,它包含 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 ];

我知道我需要告诉编译器哪个构造函数是哪个。但是怎么做?

4

1 回答 1

3

问题是您实际上没有默认构造函数。类的默认构造函数没有传入任何参数,例如它有空参数列表,所以它的签名看起来像card().

//编辑:

现在我看到您正在尝试将参数值默认为card::card(const int newRank = -1, const char* newLocation = "location"). 但是,这是不正确的,您需要在方法声明中执行此操作,而不是在方法定义中。那应该可以解决您的问题。

//编辑结束

只是为了给你一些好的提示,你可以遵循一些好的实践来改进你的代码(尽管这与你的代码的正确性无关):首先,了解初始化列表以及它们是如何使用的。其次——即使这因程序员和项目而异——在你的类中使用以大写字母开头的名称(大写字母)。

于 2013-10-24T03:20:27.320 回答