在自定义类型上使用push_back时,“无匹配函数”调用错误

时间:2012-10-14 09:39:18

标签: c++ push-back

尝试推回自定义类型的对象时出现此错误。代码如下:

class Item_base    
{
    public:     
    Item_base(string isbn=" ", int num=0):book(isbn),number(num){}    
    Item_base(Item_base &I):book(I.book),number(I.number){cout<<"\nCopy Constructor"<<endl;}    
    Item_base &operator=(Item_base &d){if (this != &d){this->book=d.book;this->number=d.number;cout<<"\nAssignment Operator"<<endl;return *this;}else{cout<<"\nAssignment Operator"<<endl;return *this;}}    
    ~Item_base(){cout<<"Item_base Destructor"<<endl;}   
    protected:    
    string book;     
    int number;    
};


#include <iostream>   
using namespace std;
#include <vector>
#include "Item_base.h"
int main (int argc, char * const argv[]) {    
    // insert code here...    
    vector<Item_base> vecbase;     
    Item_base derivo("Harry Potter",10);     
    cout<<"enter book name, qty, dqty"<<endl;     
    vecbase.push_back(derivo);     
    return 0;   
}

我得到的错误信息是:

  

错误:没有匹配函数来调用'Item_base :: Item_base(const Item_base&amp;)'

有人可以帮我吗?我是编程新手

1 个答案:

答案 0 :(得分:5)

Vector只有两个push_back函数的实现

  • push_back(const T&)
  • push_back(T&&) (自C ++ 11起)

这解释了为什么我们需要为我们的类

提供带参数const T&的复制构造函数