我有一个带有两个模板参数的模板类,其中包含以下构造函数和成员:
template <class T, class TCompare>
class MyClass {
...
public:
MyClass(TCompare compare);
void addElement(T newElement);
...
};
我有一个重载运算符 () 以进行整数比较的结构:
struct IntegerLess {
bool operator () {const int& a, const int& b) {
if (a < b)
return true;
return false;
}
};
我创建了一个“MyClass”类的对象并尝试使用它:
MyClass<int, IntegerLess> myClassObject(IntegerLess());
myClassObject.addElement(10);
但是,我收到以下编译时错误:
error: request for member ‘addElement’ in ‘myClassObject’, which is of non-class type ‘MyClass<int, IntegerLess>(IntegerLess (*)())’
我该如何纠正?谢谢!