#include<iostream>
#include<vector>
#include<list>
using namespace std;
template <typename elemtype,class iteratortype>
iteratortype afind(iteratortype fir, iteratortype las, elemtype &value);
int main()
{
const int size = 8;
int arr[size]{ 1,2,3,4,5,6,7,8 };
vector<int> vec( arr,arr + 8 );
list<int> lis{ arr,arr + 8 };
vector<int>::iterator iter_vec = afind(vec.begin(), vec.end(), 5);
if (iter_vec != vec.end())
cout << "找到了!" << endl;
list<int>::iterator iter_lis = afind(lis.begin(), lis.end(), 4);
if (iter_lis != lis.end())
cout << "找到了!" << endl;
return 0;
}
template <typename elemtype, class iteratortype>
iteratortype afind(iteratortype fir, iteratortype las, elemtype &value)
{
for (; fir != las; ++fir)
{
if (value == *fir)
return fir;
return las;
}
}
// 我用的vs2017 显示错误 E0304 没有与参数列表匹配的 函数模板 "afind" 实例,这是为什么?为什么泛型指针不能匹配函数摸板?