Friend 类及其所有后代

发布于 2024-08-07 08:27:43 字数 210 浏览 4 评论 0原文

假设我有一个 A 类,它有几个子类(B、C 和 D)。我需要 BC 和 D 来访问 E 类中的一些受保护成员。是否可以一次性将 E 的 B、C 和 D 成为朋友,而不必将它们全部列出?

我尝试过:

class E {

    friend class A;

    ...

};

但这不起作用。

谢谢

suppose that I have a class A with several subclasses (B, C, and D). I need B C and D to access some protected members from a class E. Is it possible to make B, C and D friends of E in a single hit without having to list them all?

I have tried with:

class E {

    friend class A;

    ...

};

But this doesn't work.

Thank you

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

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

发布评论

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

评论(1

蔚蓝源自深海 2024-08-14 08:27:43

您可以将受保护的访问器函数放在 A 中,并使 A 成为 E 的友元。这样,A 的所有派生类都可以通过访问器函数访问 E 的成员。

You can put protected accessor functions in A, and have A be a friend of E. That way, all derived classes of A can access the members of E via the accessor functions.

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