gpt4 book ai didi

c++ 在运行时检查对象是否实现了接口(interface)

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

我前段时间问过这些问题: Multiple inheritance casting from base class to different derived class

但我仍然不确定我是否理解答案。 问题是:下面的代码有效吗?

#include <iostream>

using namespace std;

struct Base
{
virtual void printName()
{
cout << "Base" << endl;
}
};

struct Interface
{
virtual void foo()
{
cout << "Foo function" << endl;
}
};

struct Derived : public Base, public Interface
{
virtual void printName()
{
cout << "Derived" << endl;
}
};

int main(int argc, const char * argv[])
{
Base *b = new Derived();
Interface *i = dynamic_cast<Interface*>(b);
i->foo();

return 0;
}

代码如我所愿。但据我了解,根据先前的问题,它不应该。所以我不确定这样的代码是否有效。谢谢!

最佳答案

这是有效的代码。

为什么?
因为 dynamic_cast 会告诉您所指向的对象是否确实是您要转换为的类型。
在这种情况下,实际指向的对象是 Derived 类型,每个 Derived 类型的对象也是 Interface 类型(因为Derived 继承自 Interface),因此 dynamic_cast 有效且有效。

关于c++ 在运行时检查对象是否实现了接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10400890/

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