函数模板在函数参数上怎么实现才能实例化?
比较函数设为函数模板,在同一个cpp中,但是为什么编译时提示没有实例化?//代码
template<class TYPE> bool confident_greater1(TYPE& a,TYPE& b)
{
return (a.get_confident() > b.get_confident());
}
// 使用函数模板(在同一个cpp)
std::sort(subset_on_r.begin(),subset_on_r.end(),confident_greater1<MyClass>);
//编译错误
error LNK2001: unresolved external symbol "bool __cdecl confident_greater1......