多索引中的多个唯一键

时间:2014-07-22 07:52:58

标签: algorithm stl boost-multi-index

我正在尝试将对象存储在boost multi-index容器中。

这些对象都是唯一的,可以通过2个单独的键检索(也是唯一的)。

namepsace bm = boost::multi_index;

class MyObj {
 string  strid_;
 int32_t numid_;
};

//! associative container searchable by ClOrdId and Sunofia Id.  
typedef boost::multi_index_container< MyObj,
bm::indexed_by<
  bm::ordered_unique<
    bm::member<MyObj,string,&MyObj::strid_>
  >,
  bm::ordered_unique<
    bm::member<MyObj,int32,&MyObj::numid_>
  >
>            
> Cntr;
Cntr cntr_;   

当我尝试按整数查找该索引的任何元素时,请使用以下代码

 int32_t to_find = 12;
 Cntr::iterator it = cntr_.find(id);

但它没有编译,我收到以下错误

error: invalid conversion from ‘int’ to ‘const char*’

当我使用相同的代码与字符串时,它工作正常;你知道我做错了吗?

1 个答案:

答案 0 :(得分:2)

auto it = cntr_.get<1>().find(id);

每个索引都是单独访问的(通过get),并且有自己的成员函数,迭代器等。(如果你不能使用autoit是键入Cntr::nth_index<1>::type::iterator。)有关文档tutorial的更多信息。