469826336 发表于 2019-3-18 17:40:18

形参为基类对象传递派生类实例时报错

RT,代码很简单,有大佬细讲下吗{:5_92:}

基类:
class Pet{
public:
        Pet(string type){
                this->type = type;         
        }
        Pet();
        string getPetType(){
                return this->type;
        }
private:
        string type;
};

派生类:
class Cat : public Pet{
public:
        Cat():Pet("cat"){
        }
};

调用的函数:
        void add(Pet item){
                if (item.getPetType()=="cat")
                {
                        CatQueue.push(peterPetQueue(item,count1++));
                }
                else{
                        DogQueue.push(peterPetQueue(item,count1++));
                }
        }

报错:
http://m.qpic.cn/psb?/V13DnKFA2b7guU/ic.5uE3JRZtP2sMJb0WrEU*3wfczrZv78Fg*wRBATUk!/b/dFIBAAAAAAAA&bo=gAcGBAAAAAADB6c!&rf=viewer_4

Croper 发表于 2019-3-18 17:46:44

public:
      Pet(string type){
                this->type = type;         
      }
      Pet();
      string getPetType(){
                return this->type;
      }
你声明了pet();但没有给出定义

469826336 发表于 2019-3-18 17:55:00

Croper 发表于 2019-3-18 17:46
你声明了pet();但没有给出定义

谢谢了,请问为什么给出定义了就可以呢qwq

Croper 发表于 2019-3-18 18:09:26

本帖最后由 Croper 于 2019-3-18 18:13 编辑

一般来说是你什么地方隐式调用了pet(),不给完整代码我也不知道是哪儿
比如你CatAndDog是什么类
页: [1]
查看完整版本: 形参为基类对象传递派生类实例时报错