我有
class Conatact{
.....
bool operator<(Contact &c);
};
bool operator<(Contact &c)
{
return this.getName<c.getName();
}
它说 `bool operator<(Contact&)' 当我尝试将其更改为具有两个参数时,它必须恰好采用两个参数
bool operator<(Contact &c)
{
return this.getName<c.getName();
}
它说它必须只接受一个论点