我在重载 < 运算符时遇到问题。我有这堂课:
WordEntry.h:
class WordEntry
{
public:
WordEntry(string word);
~WordEntry();
bool operator<(const WordEntry otherWordEntry);
string getWord();
private:
string _word;
};
WordEntry.cpp(我删除了构造函数和析构函数):
string WordEntry::getWord()
{
return _word;
}
bool WordEntry::operator<(WordEntry otherWordEntry)
{
return lexicographical_compare(_word.begin(),_word.end(),otherWordEntry.getWord().begin(),otherWordEntry.getWord().end());
}
当我像这样在 main.cpp 中使用它时,一切都很好:
WordEntry w1("Der");
WordEntry w2("das");
if (w1.operator<(w2)) {
cout << "w1 > w2";
}
else
{
cout << "w2 > w1";
}
但是当我用对象调用sort()
时,我会收到错误消息vector
WordEntry
二进制表达式的无效操作数(“const WordEntry”和“const WordEntry”)
它指向stl_algo.h
。
有谁知道这里发生了什么?