具有非限定名称的 namelookup :C++0x 草案 n3290

发布于 2024-11-15 13:18:04 字数 142 浏览 3 评论 0原文

ISO C++ Draft n3290 中的一点:3.4.0 第二点

“在表达式上下文中查找”的名称将在找到表达式的范围内作为非限定名称进行查找。

有人可以举例解释一下这个说法吗?

A point from the ISO C++ Draft n3290 : 3.4.0 2nd point

A name “looked up in the context of an expression” is looked up as an unqualified name in the scope where the expression is found.

Would someone please explain this statement with an example?

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

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

发布评论

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

评论(1

╰つ倒转 2024-11-22 13:18:04

它表示将在包含表达式的范围中搜索名称。即,

namespace foo { 
  struct bar {
    void foobar() {
      do_something();
    }
  };
}

如果您有此代码,则名称 do_something 将在 foobarbarfoo 和的范围内搜索在全局范围内(而不是在其他命名空间、结构或函数范围内)

It says that the scope which contains the expression will be searched for the name. i.e.

namespace foo { 
  struct bar {
    void foobar() {
      do_something();
    }
  };
}

if you have this code the name do_something will be searched in the scope of foobar, bar, foo and in the global scope (and not in other namespaces, structs or function scopes)

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