为什么未命名命名空间不等同于带有“using命名空间”的常规命名空间?宣言?

发布于 2024-09-18 08:12:08 字数 500 浏览 7 评论 0原文

SO 上的最近的帖子触发了此操作。

未命名的命名空间被认为相当于

  namespace unique { /* empty body */ } 
  using namespace unique; 
  namespace unique { namespace-body }

I fail to recollect the certain Reason as to Why it is not equal to

  namespace unique { namespace-body } 
  using namespace unique;

Also attempts Search (包括 google) but in vain.请分享您在这方面掌握的任何信息。

A recent thread on SO triggerred this.

An unnamed namespace is considered to be equivalent to

  namespace unique { /* empty body */ } 
  using namespace unique; 
  namespace unique { namespace-body }

I fail to recollect the exact reason as to why it is not equivalent to

  namespace unique { namespace-body } 
  using namespace unique;

Also tried searching (including google) but in vain. Please share any information you have in this regards.

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-09-25 08:12:08

现在存在的规范于 1995 年在 N0783 中引入 纠正极端情况。引用该论文(第 9 页):

WP 将未命名命名空间的语义定义为等效于:

命名空间唯一 {
    // 命名空间主体
}
使用唯一的命名空间;

这是不正确的,因为它使未命名命名空间中的代码依赖于
代码是否位于原始命名空间或命名空间扩展中。

namespace {} // 如果删除此行,
             // 下面使用 ::f 是无效的

命名空间{
    无效 f()
    {
        使用 ::f;
    }
}

应该更改 WP 以将未命名的命名空间定义为等效于:

命名空间 UNIQUE {}
使用唯一的命名空间;
命名空间唯一 {
    // 命名空间主体
}

The specification that exists now was introduced in 1995 in N0783 to correct for a corner case. To quote that paper (page 9):

The WP defines the semantics of an unnamed namespace as being equivalent to:

namespace UNIQUE {
    // namespace body
}
using namespace UNIQUE;

This is incorrect because it makes the code in an unnamed namespace dependent on
whether the code is in an original namespace or a namespace extension.

namespace {} // If you remove this line, the
             // use of ::f below is invalid

namespace {
    void f()
    {
        using ::f;
    }
}

The WP should be changed to define an unnamed namespace as being equivalent to:

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