提升multi_index_container更改密钥 - >容器的状态

时间:2013-07-25 11:52:51

标签: c++ boost map key boost-multi-index

假设我们有一个多索引容器:

#include <iostream>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/random_access_index.hpp>
#include <boost/multi_index/tag.hpp>
#include <boost/multi_index/key_extractors.hpp>

struct A{
A(int i){id=i;}
    int id;
};

typedef boost::multi_index::multi_index_container<
    A * ,
    boost::multi_index::indexed_by<
        boost::multi_index::random_access<
            boost::multi_index::tag<by_insertion>
        >, // this index represents insertion order
        boost::multi_index::hashed_unique<
            boost::multi_index::tag<by_id>,
            boost::multi_index::member<A, int, &A::id>
        >
    >
> MapType;

MapType map;

map.get<1>().insert(new A(1));
map.get<1>().insert(new A(2));

(*map.get<1>().find(1))->id=4; // HERE IF I CHANGE THE KEY, I CAN NOT FIND either key=4 or 1

MapType::nth_index<1>::type::iterator it = map.get<1>().find(4);
if(it != map.get<1>().end() ){
    std::cout << "FOUND A:" << *it << std::endl;
} // DOES NOT WORK?? WHY CANT I FIND the ELement with Key 4?

现在问题是我可能错误地设置了boost::multi_index::member<A, int, &A::a>,因为当我更改某个键时。我找不到key = 4的元素?

这里错误地使用了什么? 任何帮助真的很感激!

2 个答案:

答案 0 :(得分:1)

不,散列索引不存储哈希值,它们总是在运行时计算它。您为什么要更改密钥,并继续按旧值查找?

答案 1 :(得分:1)

回答Gabriel的最后评论:使用指针容器只是为了对元素进行写访问是过度的。您可以改为执行以下操作之一:

  • 使用modify(),它检查是否因为某些键被触摸而必须重新定位修改后的元素。
  • 如果您知道自己不会更改密钥,请使用const_cast<A&>()进行修改,并根据需要进行修改。

通常,Boost.MultiIndex无法仅对元素的非关键部分授予写访问权限。