c – 使用基于嵌套值的索引来提升多索引容器

前端之家收集整理的这篇文章主要介绍了c – 使用基于嵌套值的索引来提升多索引容器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有这样的对象:
struct Bar {
    std::string const& property();
};

我可以像这样为它创建一个多索引容器:

struct tag_prop {};
typedef boost::multi_index_container<
    Bar,boost::multi_index::indexed_by<
        boost::multi_index::ordered_non_unique<
            boost::multi_index::tag<tag_prop>,boost::multi_index::const_mem_fun<
                Bar,const std::string&,&Bar::property
            >
        >
    >,... other indexes
> BarContainer;

但如果我有这样一个类:

struct Foo {
   Bar const& bar();
};

如何在.bar().property()上为Foo对象的容器构造索引?

通常我会嵌入对boost :: bind的调用,但我无法弄清楚如何使它在多索引容器的上下文中工作.

解决方法

我相信你需要创建一个带有两个Foo实例的谓词对象,它的operator()可以在两个实例上调用Foo :: bar().

就像是

struct MyPredicate
{

    bool operator() (const Foo& obj1,const Foo& obj2) const
    {
        // fill in here
    }
};

然后使用

...
boost::multi_index::ordered_unique<boost::multi_index::tag<tag_prop>,boost::multi_index::identity<Foo>,MyPredicate>,...

查看MultiIndex Ordered indices reference

原文链接:https://www.f2er.com/c/111489.html

猜你在找的C&C++相关文章