我想定义一个带有模板参数的辅助函数。我已经尝试为此制作一个模板化函数,但它无法编译。知道我做错了什么吗?这是我尝试过的代码。
// vectors are great, but lack a find method. Implement one as a helper.
template<class T> bool vec_find(vector<T> &v, T obj)
{
vector<T>::iterator s;
for (s = v.begin(); s < v.end(); s++)
{
if (*s == obj)
{
return true;
}
}
return false;
}