我想对我的对象进行排序,以boost::multi_map
引用一些索引。但我存储的不是纯对象,而是包装到boost::shared_ptr
. 这是代码:
typedef boost::multi_index_container<boost::shared_ptr<Object>,
boost::multi_index::indexed_by<
boost::multi_index:: ordered_non_unique<
boost::multi_index::mem_fun<boost::shared_ptr<Object>, int, &boost::shared_ptr<Object>::getIndex>
>
>
> ObjectWrapperSet;
但它在这一点上失败了:&boost::shared_ptr<Object>::getIndex
. 从逻辑上讲,该类型没有getIndex
功能。但是如何以这种方式引用该函数呢?
我用简单的方法尝试过Object::getIndex
:
could not convert template argument ‘&Object::getIndex’ to ‘int (boost::shared_ptr<Object>::*)()’