如何使用向量的template_back函数

How do I use the emplace_back function of a vector?

本文关键字:back 函数 template 何使用 向量      更新时间:2023-10-16

编辑:改为只有一个问题,感谢反馈!

我有这个矢量

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) { … }