如何在其他自定义类型中搜索自定义类型的地图

时间:2020-11-09 20:59:07

标签: c++ types operator-overloading stdmap

我有两个结构abc2abc

struct abc2 {
    const int& data;
    abc2(const int& cdata) : data(cdata) {}
};

struct abc {
    const int &data;
    abc(const int& cdata) : data(cdata) {}

    bool operator <(const abc2& rhs) const {
        return data < rhs.data;
    }
};

我有abcint的地图

std::map<abc, int> test;
test[abc(1)] = 2;
test[abc(2)] = 3;

我想用结构test搜索abc2。我认为它会起作用,因为我已经重载了abc中的<运算符以接受abc2

auto foo = test.find(abc2(1));

但是这不起作用,并且我收到一个编译时错误,提示cannot convert argument 1 from 'abc2' to 'const abc &'

是否有解决此问题的方法?我必须使用abc2完成查找。

0 个答案:

没有答案