gpt4 book ai didi

c++ - binary_search() 所需的自定义类比较

转载 作者:行者123 更新时间:2023-11-27 23:23:21 24 4
gpt4 key购买 nike

我有一个自定义类和 std::vector 填充了此类的对象。我想在此数组中执行 binary_search

我像这样在我的类中重载了运算符:

bool operator ==(const someClass&);
bool operator > (const someClass&);
bool operator < (const someClass&);

他们工作正常(他们有 body ,是的)。

现在我有一个错误Error

2   error C2678: binary '<' : no operator found which takes a left-hand operand of type 'const someClass' (or there is no acceptable conversion)

我应该创建复制构造函数(已经重载 =,但没有帮助)还是向运算符添加其他内容?

谢谢。

最佳答案

您需要使运算符为常量:

bool operator < (const someClass&) const;

没有它,只有 RHS 是常量。

关于c++ - binary_search() 所需的自定义类比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11249413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com