公共嵌套类和普通类有什么区别吗?

发布于 2024-09-24 17:11:14 字数 154 浏览 2 评论 0原文

假设我有:

class A {

public:
    class B {

    };

};

公共嵌套类和在其自己的 cpp 文件中定义的常规 B 类之间有什么区别,除了 A::B 必须在第一个选项中使用这一事实之外?

Let's say I have:

class A {

public:
    class B {

    };

};

Is there any difference between that public nested class and just a regular B class which is defined in its own cpp file, except for the fact that A::B must be used in the first option?

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

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

发布评论

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

评论(2

離殇 2024-10-01 17:11:14

本质上没有区别,只是 A::BA 的成员,因此拥有 A 私有成员的所有访问权限> 任何其他成员都会有的。

There is essentially no difference, except that A::B is a member of A, and so has all the access rights to private members of A that any other member would have.

长途伴 2024-10-01 17:11:14

除了“B”的范围规则之外没有任何区别。使用“B”的客户端必须使用“A::”限定其范围。当您想要转发引用“B”时,嵌套“B”有时可能会出现问题,因为 C++ 编译器通常不允许您转发引用类中的类(但它允许您转发引用命名空间中的类)。

There isn't any difference other than the scoping rules for "B". Clients that use "B" must qualify its scope with "A::". Nesting the "B" can sometimes be problematic when you want to forward reference it, since C++ compilers typically do not allow you to forward reference a class within a class (it does allow you to forward reference a class within a namespace though).

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