正在搜索 boost::bimap 当前 class 实例

Searching a boost::bimap for the current class instance

好的,所以我 boost::bimap 声明为:

boost::bimap<object*, position> object_list;

其中对象和位置分别是 class 和结构。

在 bimap 中存储的当前对象中,我想找到它自己的条目。

我目前正在尝试这样做:

void order::do_thing() {
    ...
    position pos = object_list.left.at(this);
    ...
}

我在解析错误输出时遇到问题,但似乎 bimap 的 at 函数不喜欢它的常量 and/or 引用(是的,我知道这是一个右值)。

执行此搜索的 proper/suggested 方法是什么?

这是错误的片段:

order.cpp:117:56:   required from here
/usr/include/boost/bimap/container_adaptor/associative_container_adaptor.hpp:207:56: error: no match for call to ‘(const boost::bimaps::container_adaptor::detail::key_to_base_identity<object*, object* const>) (order* const&)’
                 this->template functor<key_to_base>()(k)

(添加编辑以解决 sehe 的评论并指出问题)

如果我的 post 不礼貌,我深表歉意,我都是 post 的新手,而且我假设只是转储我的所有代码(只是为了包括自定义这部分代码的对象和模板有数百行)会被认为是错误的形式,所以我将其削减到(我认为的)最低限度以仍然能解决问题。

并且只是为了解决测试用例 link,我确实编写了测试用例。在这种情况下,我将一个向量换成一个 bimap 以添加到位置代码中,这实际上无法编译(尽管我会说我不是很明确地指出它是编译错误,而不是堆栈跟踪)。我假设你 (sehe) 以为我在谈论运行时错误,否则我看不出 link 是如何相关的。

无论如何,我正在将代码削减到实际的最小值以重现错误,这样我就可以 post 它在这里,然后意识到实际问题。如上所示,bimap 包含值 <object*, position> 但是试图将自己插入 bimap 的 class 是一个 订单 class: void订单::do_thing() {

原来是简单的类型错误。对不起,大家,问了一个非常愚蠢的问题。我想这就是我在凌晨 3 点处理项目所得到的。

没有问题。

我能想到的唯一陷阱是你有 this 隐式常量。在这种情况下,地图将不得不采用指向 const object 的指针!

在此处查看此示例。取消注释 // const 以查看 const:

的变化

Live On Coliru(非常量)

Live On Coliru (const)

#include <boost/bimap.hpp>
#include <iostream>

using position = std::string;

#define USE_CONST // const

struct object {
    template <typename BiMap>
    position get_position(BiMap const& bimap) USE_CONST {
        return bimap.left.at(this);
    }
};

int main() {
    std::vector<object> instances(10);

    boost::bimap<object USE_CONST*, position> mapping;

    for (auto& instance : instances)
        mapping.insert({&instance, "instance #" + std::to_string(mapping.size()+1)});

    for (auto& instance : instances)
        std::cout << "Instance reports " << instance.get_position(mapping) << "\n";
}

版画

Instance reports instance #1
Instance reports instance #2
Instance reports instance #3
Instance reports instance #4
Instance reports instance #5
Instance reports instance #6
Instance reports instance #7
Instance reports instance #8
Instance reports instance #9
Instance reports instance #10