我正在尝试创建一个程序,我必须在其中使用模板,我现在有点卡住了。这是我的代码的一部分:
template <typename _Type, typename _Comparator = equal_to</*char*/> >
class CSearch {
public:
CSearch();
CSearch(const _Comparator & cmp);
void Add(int id,
const _Type & needle);
set<int> Search(const _Type & hayHeap) const;
private:
struct CSElem {
int id;
_Type sekvence;
};
vector<CSElem> data;
_Comparator comp;
};
template <typename _Type, typename _Comparator>
CSearch<_Type, _Comparator>::CSearch() {
comp = _Comparator();
}
.......
template <typename _Type, typename _Comparator>
void CSearch<_Type, _Comparator>::Add(int id, const _Type& needle) {
CSElem temp;
.....
data.push_back(temp);
}
template <typename _Type, typename _Comparator>
set<int> CSearch<_Type, _Comparator>::Search(const _Type& hayHeap) const {
typename _Type::const_iterator j, t;
...... //trying to find out which items of the variable data are part of hayHeap
if (comp(*t, *j)) {
......
}
......
}
/*
*
*/
int main(int argc, char** argv) {
CSearch <string> test1;
test1 . Add(0, "hello");
test1 . Add(1, "world");
test1 . Search("hello world!");
CSearch <vector<int> > test2;
....
}
所以问题是,当我不向模板提供第二个参数时,对于存储在测试变量中的类型,比较器应该是 equal_to,所以对于字符串来说它应该是
equal_to<char>
或用于整数向量
equal_to<int>
我已经考虑了很长时间,但仍然没有弄清楚如何声明模板或做什么,它具有前面提到的功能。如果有人能给我一个提示或如何解决这个问题的例子,我会很高兴。
谢谢