gpt4 book ai didi

C++ - 是否可以在多重继承中检查派生类类型?

转载 作者:太空狗 更新时间:2023-10-29 20:34:37 25 4
gpt4 key购买 nike

在下面的代码中,我想使用 dynamic_cast 计算 std::vectorB 类 对象的出现次数> 转换。但是结果是2,应该是1。发生这种情况是因为 dynamic_cast 由于继承将 class D 的对象检查为 class B 的对象。

有没有可能的方法来检查派生类类型的多重继承而不会出现这个问题?在这种情况下,C++ 中是否有任何等效的 Java instanceof?

// Example program
#include <iostream>
#include <string>
#include <vector>


using namespace std;

class Base{

public:
Base(){};
virtual ~Base(){};
};

class A:public virtual Base{
public:
A() {};
virtual ~A(){};

};

class B:public virtual Base{
public:
B(){};
virtual ~B(){};


};


class D: public A, public B{
public:

D(){};
virtual ~D(){};

};

int main()
{

int c=0;
std::vector<Base*> v;
std::vector<Base*>::iterator myIt;

v.push_back(new Base());
v.push_back(new A());
v.push_back(new B());
v.push_back(new D());

for(myIt=v.begin(); myIt!=v.end();myIt++)
if(B* object=dynamic_cast<B*>(*myIt))
c++;
cout<<c<<endl;
return 0;
}

最佳答案

您已经依赖 RTTI,因此不会产生更多成本。您可以做的是通过调用 typeid 来替换动态转换。它只会检查精确动态类型:

// At the top
#include <typeinfo>
#include <typeindex>

//...

std::type_index const b_ti = typeid(B);

for(myIt=v.begin(); myIt!=v.end();myIt++)
if(b_ti == typeid(**myIt)) // Need to pass an lvalue of type B, hence the double asterisk
c++;

旁注,但您应该考虑将循环替换为基于范围的 for 循环。这将使整个事情更具可读性:

for(Base *item : v)
if(b_ti == typeid(*item))
++c;

或者更好的是,命名算法:

c = std::count_if(begin(v), end(v), 
[&](Base *item) { return b_ti == typeid(*item); }
);

关于C++ - 是否可以在多重继承中检查派生类类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47408743/

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