派生类和基类之间指针对指针的转换?

问题描述 投票:12回答:2

关于下面的C++程序。

class Base { };

class Child : public Base { };

int main()
{   
    // Normal: using child as base is allowed
    Child *c = new Child();
    Base *b = c;

    // Double pointers: apparently can't use Child** as Base**
    Child **cc = &c;
    Base **bb = cc;

    return 0;
}

GCC在最后一条赋值语句上产生了以下错误。

error: invalid conversion from ‘Child**’ to ‘Base**’

我的问题分为两部分:

  1. 为什么没有隐式转换从Child**到Base**?
  2. 我可以用C式的转码或用 reinterpret_cast. 使用这些转换意味着放弃了所有的类型安全。 我是否可以在类定义中添加任何东西来使这些指针隐式地投射,或者至少以一种允许我使用 static_cast 而不是?
c++ inheritance pointers subtyping
2个回答
22
投票

如果允许这样做,你可以这样写。

*bb = new Base;

然后......如果允许这样做,你可以这样写: c 最终会指向一个 Base. 坏的。


1
投票

指针是虚拟地址。一般情况下,你要对自己的行为负责。使用msvc2019. 我可以投一个到base,但不能投两个。

example 1:

int p;
int *p1 = &p;
int **p2 = &p1; //OK

example 2:

struct xx {};
struct yy : public xx {};

yy p;
yy *p1 = &p;
xx **p2 = &p1; //Just a strange error

example 3:

struct xx {};
struct yy : public xx {};

yy p;
xx *p1 = &p; 
xx **p2 = &p1; //OK
© www.soinside.com 2019 - 2024. All rights reserved.