relocate()
boost多索引容器中的含义是什么?
我已经阅读了 boost 文档中的手册,但我想看一个简单的例子,看看使用和不使用relocate 函数的区别。虽然网上的例子并不简单......
relocate()
boost多索引容器中的含义是什么?
我已经阅读了 boost 文档中的手册,但我想看一个简单的例子,看看使用和不使用relocate 函数的区别。虽然网上的例子并不简单......
它只是在有序索引中重新定位(移动)项目:
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/sequenced_index.hpp>
#include <iostream>
using namespace boost::multi_index;
typedef multi_index_container<
int,
indexed_by<sequenced<> >
> Ints;
int main()
{
Ints ints;
ints.insert(ints.end(), 1);
ints.insert(ints.end(), 2);
ints.insert(ints.end(), 3);
ints.insert(ints.end(), 4);
std::for_each (ints.begin(), ints.end(), [&](int i) { std::cout << i << std::endl; }); // 1, 2, 3, 4
auto i = find(ints.begin(), ints.end(), 2);
ints.relocate(ints.end(), i);
std::for_each (ints.begin(), ints.end(), [&](int i) { std::cout << i << std::endl; }); // 1, 3, 4, 2
}