关于以下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**’
我的问题分为两部分:
reinterpret_cast
。使用这些演员表意味着抛弃所有类型的安全。是否有任何我可以添加到类定义中以隐式地转换这些指针,或者至少以允许我使用static_cast
的方式表达转换? 答案 0 :(得分:19)
如果允许,可以写下:
*bb = new Base;
而c
最终会指向Base
的实例。坏。
答案 1 :(得分:1)
指针是虚拟地址。通常,您应对使用该工具负责。使用msvc2019。我可以将一个转换为基础,但不能转换为两个:
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