《essential c++》 p75
template<typename IteratorType, typename elemType>
IteratorType
find(IteratorType first, IteratorType last, const elemType &value)
{
for (; first != last; ++first)
if (value == *first)
return first;
return last;
}
int main()
{
const int asize = 8;
int ia[asize] = { 1,1,2,3,5,8,13,21 };
vector<int> ivec(ia, ia + asize);
list<int> ilist(ia, ia + asize);
int *pia = find(ia, ia + asize, 1024);
if (pia != ia + asize)
cout << "0000" << endl;
//vector<int>::iterator it;
//it = find(ivec.begin(), ivec.end(), 1024);
}
在main中使用find总会报多个重载函数冲突。
我感觉应该没有问题,不知道怎么就是编译通不过。