为什么会出现编译错误no matching function for call to `f( __gnu_cxx::__normal_iterator > >)'
?
#include <vector>
template<typename T>
void f(const typename std::vector<T>::iterator &) {}
void g() {
std::vector<int> v;
f<int>(v.end()); // Compiles.
f(v.end()); // Doesn't compile, gcc 4.3 can't find any match.
}
最终,我想编写一个函数,它只需要一个向量迭代器,并且无法为其他任何东西编译(出现有意义的错误)。所以template<typename T>void f(const T&) {}
不是一个好的解决方案,因为它也可以为其他类型编译。