Casting double pointers of base classes

后端 未结 3 1694
遇见更好的自我
遇见更好的自我 2021-01-20 10:17

I have an Abstract class, say Animal. From this class, I have many inheriting classes, such as Cat, Dog, Mouse. I have

3条回答
  •  遥遥无期
    2021-01-20 10:50

    You need an Animal*:

    Dog* d = new Dog(x);
    Animal* a = d;
    Animal** animal = &a;
    someMethod(animal);
    

    An Animal** can only point to an Animal*. It would be very bad if it could point to a Dog*. If it could, you could do something like this:

    Dog* d = new Dog(x);
    Animal** animal = &d;
    *animal = new Hippopotamus();
    

    Now d points to a Hippopotamus, which is very wrong indeed.

提交回复
热议问题