0

首先让我说我是 C++ 的初学者。我正在尝试编写一个简单地询问用户 3 个输入的程序。两个是字符串,一个是整数。我为此编写了以下课程:

#include <string>
#include <sstream>

using namespace std;

class Cellphone
{
private :
        string itsbrand;
    string itscolor;
    int itsweight;

public :
    string tostring();
        void setbrand(string brand);
        string getbrand() ;
    void setcolor(string color);
    string getcolor();
    void setweight(int weight);
    int getweight();


};

一切都像我需要的一样工作,除了我需要两个构造函数。一种在参数中没有数据,一种在参数中有数据。我很困惑,甚至从构造函数开始,所以如果有人能提供一点见解,我将不胜感激。这是我的 main() :

int main ()
{
  Cellphone Type;

  int w;
  string b, c;

  cout << "Please enter the Cellphone brand : ";
  getline(cin, b);
  Type.setbrand (b);
  cout << "Please enter the color of the Cellphone : ";
  getline(cin, c);
  Type.setcolor (c);
  cout << "Please enter the weight of the Cellphone in pounds : ";
  cin >> w;
  Type.setweight (w);
  cout << endl;
  cout << Type.tostring();
  cout << endl;
}

关于我将如何做构造函数的任何想法?

4

1 回答 1

2

C++ 类中的构造函数可以重载。

  1. 没有给定参数的构造函数通常称为“默认构造函数”。如果你的类没有定义任何构造函数,编译器会为你生成一个“默认构造函数”。“默认构造函数”是可以在不提供任何参数的情况下调用的构造函数。

  2. 当创建类的新对象时为这些参数提供值时,使用具有给定参数的构造函数。如果你的类已经定义了带参数的构造函数,那么编译器不会为你生成“默认构造函数”,所以当你创建一个需要默认构造函数的对象时,会导致编译错误。因此,您可以根据您的应用程序来决定是否提供默认构造函数和重载构造函数。

例如,在您的 CellPhone 类中,您可以根据需要提供两个或更多构造函数。

默认构造函数:您正在为类的成员提供某种默认值

public CellPhone(): itsbrand(""), itscolor(""), itsweight(0){ 
      //note that no formal parameters in CellPhone parameter list
}

带参数的构造函数:

public CellPhone(string b, string c, int w): itsbrand(b), itscolor(c), itsweight(w)
{
}

您还可以定义一个为所有给定参数提供默认值的构造函数,根据定义,这也称为“默认构造函数”,因为它们具有默认值。下面给出的示例:

public CellPhone(string b="", string c="", int w=0): itsbrand(b),itscolor(c),itsweight(w)
{
}

这些是关于 C++ 中的构造函数重载的一些方面;

于 2013-03-20T03:58:15.687 回答