5

这让我和一些同事感到困惑,但我们已经验证这是针对大约 5 种不同编译器的错误。他们都返回这个小代码片段是“模棱两可的”。

namespace foo {
  struct type_t {
    int x;
  };
  void bar( type_t & );
}

void bar( foo::type_t & );

void func( void ) {
  foo::type_t x = { 10 };
  bar(x);
}

Clang 返回以下内容:

func.cpp:12:3: error: call to 'bar' is ambiguous
  bar(x);
  ^~~
func.cpp:5:8: note: candidate function
  void bar( type_t & );
       ^
func.cpp:8:6: note: candidate function
void bar( foo::type_t & );
     ^
1 error generated.

为什么会这样?代码中没有“使用”语句。解析顺序不应该包含 foo 命名空间,那么为什么要在那里搜索呢?为什么这是模棱两可的?

4

1 回答 1

8

它是依赖于参数的查找。to 的参数barfoo命名空间中,因此 bar 也在该命名空间中查找,导致歧义。如果您想foo从全局命名空间中明确调用::foo.

于 2012-04-19T19:19:44.570 回答