在 boost multi_index 容器中,是否定义了 "default index"?
In a boost multi_index container, is a "default index" defined?
这是一个带有序列索引和散列索引的整数容器:
#include <iostream>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/sequenced_index.hpp>
int main()
{
namespace bmi = boost::multi_index;
boost::multi_index_container<
int,
bmi::indexed_by<
bmi::sequenced<>,
bmi::hashed_unique<bmi::identity<int>>
>
> c;
for (int i=0; i<100; ++i) c.push_back(i);
for (int j : c) std::cout << " " << j;
std::cout << std::endl;
return 0;
}
注意我没有在第二个循环中使用 get
。在这种情况下是否定义了行为? (例如,"This is the same as using .get<0>()
"。)
是的,索引 #0 是解释意义上的默认值 here:
可以直接从 multi_index_container 对象访问索引 #0 的功能,而无需使用 get<0>()
:例如,es.begin()
等同于 es.get<0>().begin()
.
这是一个带有序列索引和散列索引的整数容器:
#include <iostream>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/sequenced_index.hpp>
int main()
{
namespace bmi = boost::multi_index;
boost::multi_index_container<
int,
bmi::indexed_by<
bmi::sequenced<>,
bmi::hashed_unique<bmi::identity<int>>
>
> c;
for (int i=0; i<100; ++i) c.push_back(i);
for (int j : c) std::cout << " " << j;
std::cout << std::endl;
return 0;
}
注意我没有在第二个循环中使用 get
。在这种情况下是否定义了行为? (例如,"This is the same as using .get<0>()
"。)
是的,索引 #0 是解释意义上的默认值 here:
可以直接从 multi_index_container 对象访问索引 #0 的功能,而无需使用 get<0>()
:例如,es.begin()
等同于 es.get<0>().begin()
.