C++ 中命名空间和友元的交互?

发布于 2024-08-16 06:42:06 字数 76 浏览 4 评论 0原文

是否可以使类的命名空间成为友元,假设我有一个包含许多类的单元测试命名空间,并且我希望测试命名空间成为类的友元,以便它可以访问私有实现细节。

Is it possible to make a namespace friend of a class, say I have a unit test namespace with many classes and I wanted the test namespace to be friend to a class so that it has access to private implementation details.

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

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

发布评论

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

评论(2

青衫儰鉨ミ守葔 2024-08-23 06:42:06

不,这在 C++ 中是不可能的。坦率地说,它的设计有点糟糕。

No, this is not possible in C++. Frankly, it smacks of poor design.

深海少女心 2024-08-23 06:42:06

如果您使用 .NET,您可能需要查看 InternalsVisibleTo 属性。无论如何请注意,这适用于整个程序集,而不适用于单个命名空间。

If you are using .NET, you may want to take a look at the InternalsVisibleTo attribute. Anyway note that this works for whole assemblies, not for single namespaces.

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