3

我想对我的对象进行排序,以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 ‘&amp;Object::getIndex’ to ‘int (boost::shared_ptr<Object>::*)()’
4

1 回答 1

2

改变

boost::multi_index::mem_fun<boost::shared_ptr<Object>, int, &boost::shared_ptr<Object>::getIndex>

boost::multi_index::mem_fun<Object, int, &Object::getIndex>

根据文档,它应该可以工作。

于 2011-04-10T08:29:56.943 回答