gpt4 book ai didi

C++ 多态性 : how to test if a class derived from another base class?

转载 作者:太空狗 更新时间:2023-10-29 20:08:55 27 4
gpt4 key购买 nike

对不起标题的措辞;我不知道如何让它变得更好。但我的问题的要点是:

#include <iostream>
using namespace std;

class Base {};
class Base2 {};
class C : public Base, public Base2 {};
class D : public Base {};

void isDerivedFromBase2(Base *p) {
if (...) { /* test whether the "real object" pointed by p is derived from Base2? */
cout << "true" << endl;
}
cout << "false" << endl;
}
int main() {
Base *pc = new C;
Base *pd = new D;
isDerivedFromBase2(pc); // prints "true"
isDerivedFromBase2(pd); // prints "false"

// ... other stuff
}

我如何测试一个由其基类指针 Base * 表示的对象是否派生自另一个基类 Base2

最佳答案

您可以像这样执行dynamic_cast:

 if (dynamic_cast<Base2 *>(p)) {

online_compiler

与使用 typeid 的方法不同,这种方法不需要包含额外的 header ,但它也依赖于 RTTI(这意味着这些类需要是多态的)。

关于C++ 多态性 : how to test if a class derived from another base class?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51436428/

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