如何转发声明 C++类从另一个类继承?

发布于 2024-08-19 09:44:09 字数 348 浏览 3 评论 0原文

我知道我可以按如下方式转发声明一个类:

class Foo;

// ... now I can use Foo*

但是,我可以这样做:

class Bar {
  public:
    virtual void someFunc();
};
// ... somehow forward declare Class Foo as : public Bar here
someFunc(Foo* foo) {
  foo -> someFunc();
}

class Foo: public Bar {
}

谢谢!

I know that I can forward declare a class as follows:

class Foo;

// ... now I can use Foo*

However, can I do something like this:

class Bar {
  public:
    virtual void someFunc();
};
// ... somehow forward declare Class Foo as : public Bar here
someFunc(Foo* foo) {
  foo -> someFunc();
}

class Foo: public Bar {
}

?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南巷近海 2024-08-26 09:44:09

您可以将 Bar 转发声明为 class Bar; 并更改 someFunc 的签名以采用 Bar* 作为参数。由于 someFunc() 是基类中的虚拟方法,因此它应该可以工作。

You can forward declare Bar as class Bar; and change the signature of someFunc to take a Bar* as parameter. Since someFunc() is a virtual method in the base class, it should work.

芸娘子的小脾气 2024-08-26 09:44:09

在您的前向声明之后,Foo 成为不完整类型,并且在您提供 Foo 的定义之前,它将保持不完整状态。
虽然 Foo 不完整,但任何取消引用 Foo 指针的尝试都是错误的。因此,要编写

foo->someFunc();

您需要提供 Foo 的定义。

After your forward declaration Foo becomes an incomplete type and it will remain incomplete until you provide the definition of Foo.
While the Foo is incomplete any attempt to dereference a pointer to Foo is ill-formed. So to write

foo->someFunc();

you need to provide Foo's definition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文