具有非限定名称的 namelookup :C++0x 草案 n3290
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它表示将在包含表达式的范围中搜索名称。即,
如果您有此代码,则名称
do_something
将在foobar
、bar
、foo
和的范围内搜索在全局范围内(而不是在其他命名空间、结构或函数范围内)It says that the scope which contains the expression will be searched for the name. i.e.
if you have this code the name
do_something
will be searched in the scope offoobar
,bar
,foo
and in the global scope (and not in other namespaces, structs or function scopes)