我有一个类似于以下结构的程序:
class A {
private:
std::set<B> members;
public:
void func(const C& arg) {
std::set<B>::iterator iter = members.find(a);
if(iter != members.end()) {
iter->check(arg);
}
}
}
class B {
private:
std::deque<C> writers;
public:
void check(const C& arg) {
if(std::find(writers.begin(), writers.end, arg) != writers.end()) {
/* Code */
}
}
}
class C {
private:
int id;
public:
bool operator==(const C& arg) {
return arg.id == this->id;
}
}
当我编译它时,我收到以下错误消息:
no matching function for call to ‘B::check(const C&) const’
note: candidates are: void B::check(const C&) <near match>
如果我声明check()
为,const
那么编译器会抛出一个错误,要求将==
C 类中的重载运算符声明为const
. 我不知道是否将重载运算符设为const
正确的做法。(我试过一次,据我记得它也给出了一些错误)。
我已经尝试解决这个问题超过五天了,但仍然没有线索。