如何使用向量的 emplace_back 函数?
How do I use the emplace_back function of a vector?
编辑:改成只有一个问题,感谢反馈!
我有这个向量
vector<Artifact> art;
art.emplace_back("Ipad", 349.99);
art.emplace_back("Gameboy", 29.99);
art.emplace_back("Xbox", 229.99);
art.emplace_back("SamsungTV", 559.99);
art.emplace_back("AirCon", 319.99);
这些项目给我一个错误
C2661 'Artifact::Artifact': no overloaded function takes 2 arguments
我不明白为什么它会给我这个错误,我有一个带有 7 个参数的构造函数,但我只需要名称和价格来完成我想要做的事情。
编辑:这是最小的可重现示例:
class Item {
public:
virtual double GetTotalPrice();
};
//Class artifact now inherits Item
class Artifact : public Item
{
private:
string GUID;
string Name;
string Description;
string Category;
double Price;
double Discount;
enum DiscountType { Amount, Percentage };
int Quantity;
public:
//Constructor
Artifact(string GUID, string Name, string Description, string Category, double Price, double Discount, int Quantity)
{
this->GUID = GUID;
this->Name = Name;
this->Description = Description;
this->Category = Category;
this->Price = Price;
this->Discount = Discount;
this->Quantity = Quantity;
}
//default constructor
Artifact();
void set_name(const string& name)
{
Name = name;
}
void set_price(double price)
{
if (Price > 0)
{
Price = price;
}
else cout << "Price cannot be negative!";
};
int main()
{
vector<Artifact> art;
art.emplace_back("Ipad", 349.99);
art.emplace_back("Gameboy", 29.99);
art.emplace_back("Xbox", 229.99);
art.emplace_back("SamsungTV", 559.99);
art.emplace_back("AirCon", 319.99);
return 0;
}
基本上,您得到的错误是因为您有两个构造函数(一个默认采用 0 个参数,另一个是 7 个参数版本),但您只将两个值传递给 emplace_back
。传递给 emplace_back
的值被转发给 Artifact
的构造函数。
有两种可能的解决方法。首先,是创建另一个只接受两个值的构造函数,如下所示:
Artifact(string Name, double Price) : Artifact("", Name, "", "", Price, 0., 0 ) {}
或者,您可以修改现有的 7 参数构造函数以使用默认值
// note the reordering of parameters here
Artifact(string name, double Price, string GUID= "",
string Description = "", string Category = "",
double Discount = 0.0, int Quantity = 0) { … }
编辑:改成只有一个问题,感谢反馈!
我有这个向量
vector<Artifact> art;
art.emplace_back("Ipad", 349.99);
art.emplace_back("Gameboy", 29.99);
art.emplace_back("Xbox", 229.99);
art.emplace_back("SamsungTV", 559.99);
art.emplace_back("AirCon", 319.99);
这些项目给我一个错误
C2661 'Artifact::Artifact': no overloaded function takes 2 arguments
我不明白为什么它会给我这个错误,我有一个带有 7 个参数的构造函数,但我只需要名称和价格来完成我想要做的事情。
编辑:这是最小的可重现示例:
class Item {
public:
virtual double GetTotalPrice();
};
//Class artifact now inherits Item
class Artifact : public Item
{
private:
string GUID;
string Name;
string Description;
string Category;
double Price;
double Discount;
enum DiscountType { Amount, Percentage };
int Quantity;
public:
//Constructor
Artifact(string GUID, string Name, string Description, string Category, double Price, double Discount, int Quantity)
{
this->GUID = GUID;
this->Name = Name;
this->Description = Description;
this->Category = Category;
this->Price = Price;
this->Discount = Discount;
this->Quantity = Quantity;
}
//default constructor
Artifact();
void set_name(const string& name)
{
Name = name;
}
void set_price(double price)
{
if (Price > 0)
{
Price = price;
}
else cout << "Price cannot be negative!";
};
int main()
{
vector<Artifact> art;
art.emplace_back("Ipad", 349.99);
art.emplace_back("Gameboy", 29.99);
art.emplace_back("Xbox", 229.99);
art.emplace_back("SamsungTV", 559.99);
art.emplace_back("AirCon", 319.99);
return 0;
}
基本上,您得到的错误是因为您有两个构造函数(一个默认采用 0 个参数,另一个是 7 个参数版本),但您只将两个值传递给 emplace_back
。传递给 emplace_back
的值被转发给 Artifact
的构造函数。
有两种可能的解决方法。首先,是创建另一个只接受两个值的构造函数,如下所示:
Artifact(string Name, double Price) : Artifact("", Name, "", "", Price, 0., 0 ) {}
或者,您可以修改现有的 7 参数构造函数以使用默认值
// note the reordering of parameters here
Artifact(string name, double Price, string GUID= "",
string Description = "", string Category = "",
double Discount = 0.0, int Quantity = 0) { … }