模糊的C ++编译器错误

时间:2011-02-02 10:12:10

标签: c++ namespaces compiler-errors ambiguous

以下代码无法编译。该错误似乎是对合并例程的某种模糊调用。我的理解是STL有一个在std命名空间中找到的合并例程,但据我所知,下面代码中的名称merge应该是唯一的。

如果我将merge重命名为xmerge,一切正常。问题是什么?冲突名称来自何处?

http://codepad.org/uAKciGy5

#include <iostream>
#include <iterator>
#include <vector>

template<typename InputIterator1,
         typename InputIterator2,
         typename OutputIterator>
void merge(const InputIterator1 begin1, const InputIterator1 end1,
           const InputIterator2 begin2, const InputIterator2 end2,
           OutputIterator out)
{
   InputIterator1 itr1 = begin1;
   InputIterator2 itr2 = begin2;
   while ((itr1 != end1) && (itr2 != end2))
   {
      if (*itr1 < *itr2)
         *out = *itr1, ++itr1;
      else
         *out = *itr2, ++itr2;
      ++out;
   }
   while (itr1 != end1) *out++ = *itr1++;
   while (itr2 != end2) *out++ = *itr2++;
}

int main()
{
   std::vector<int> l1;
   std::vector<int> l2;
   std::vector<int> merged_list;

   merge(l1.begin(),l1.end(),
         l2.begin(),l2.end(),
         std::back_inserter(merged_list));

   return 0;
}

1 个答案:

答案 0 :(得分:17)

编译器在merge函数与std::merge中定义的algorithm之间感到困惑。使用::merge消除这种歧义。这个调用是不明确的,因为当使用非限定函数名时,编译器使用Argument Dependendent Lookup来搜索函数。