gpt4 book ai didi

c++ - 将子类实例替换为父类(super class)引用 C++

转载 作者:太空宇宙 更新时间:2023-11-04 13:58:23 27 4
gpt4 key购买 nike

class MovablePoint : public Point { 
// MovablePoint is a subclass of Point
// Something
}
Point * ptrP1 = new MovablePoint(11, 12, 13, 14);

如果我得到上面的格式,我可以知道在这种情况下我的指针 ptrP1 将指向 Point 类型的对象或 MovablePoint< 类型的对象 ?

最佳答案

您可以为此使用dynamic_cast:

MovablePoint* pMovPoint = dynamic_cast<MovablePoint*>(ptrP1);

如果可以转换则返回一个有效的指针,否则返回0。

关于c++ - 将子类实例替换为父类(super class)引用 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20365614/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com