我对 C++ 中的标准 ADL 分辨率有疑问。
这是解释我的查询的示例代码:
#include <string>
// The mechanism:
namespace A {
template< class C >
::std::string scope(const C*)
{ return "A"; }
namespace B {
template< class C >
::std::string scope(const C *foo)
{ return A::scope(foo)+"::B"; }
} // namespace B
} // namespace A
::std::string scope(...)
{ return ""; }
// The test classes
struct foo {};
namespace A {
struct foo {};
namespace B {
struct foo {};
}
}
// The usage
int main()
{
foo *Foo=0;
A::foo *FooA=0;
A::B::foo *FooB=0;
scope(Foo); // OK, returns ""
scope(FooA); // OK, returns "A"
scope(FooB); // On one compiler, OK returns "A::B" ; On another, compiler error "Ambiguous call" between A::scope() and A::B::scope()
}
那么,我的问题是关于 ADL 的标准是什么?应该找到参数的父命名空间中的所有函数,还是只找到参数的(嵌套)命名空间中可用的函数+全局函数?
该程序已在 MSVC 2008 上进行了测试(并且可以使用 SP 编译,但并非没有...)