-1

我想使用迭代器的 find 方法来检查我是否已经在向量中定义了一个类的实例。我已经为该类重载了 == 运算符。但是,我无法编译它。

我在这里想念什么?

提前谢谢。

这是代码中的一个片段:

vector<ContourEdgeIndexes>::iterator it = find(contourEdges.begin(),contourEdges.end(),contourEdgeCand);
        if(it != contourEdges.end()) {
            contourEdges.erase(it);
        }

compiler gives this error:
error: no matching function for call to     ‘find(std::vector<ContourEdgeIndexes>::iterator, std::vector<ContourEdgeIndexes>::iterator, ContourEdgeIndexes&)’

edit:
and here is the overloaded == operator:
bool operator == (ContourEdgeIndexes& rhs) {
    if((this->first == rhs.first) && (this->second == rhs.second))
        return true;
    else
        return false;
}
4

1 回答 1

3

ContourEdgeIndexes如果定义为成员,您的操作员应该接受对 的常量引用。运算符本身也应该是 const。

bool operator == (const ContourEdgeIndexes& rhs) const {
    return ((this->first == rhs.first) && (this->second == rhs.second));
}
于 2013-01-12T14:56:03.293 回答