如何确定boost.preprocessor元组中的元素数?

时间:2010-10-01 18:51:50

标签: c++ boost boost-preprocessor

如何确定boost.preprocessor元组中的元素数?

2 个答案:

答案 0 :(得分:2)

你没有。这就是为什么每个使用元组的宏都需要你指定元组的大小。您可以尝试基于2元组做一些事情,其中​​第一个值是第二个的大小:

#define MyTuple (2,(a,tuple))
#define MyTupleSize( S_ ) BOOST_PP_TUPLE_ELEM( 2, 0, S_ )
#define GetMyTuple( S_, I_ ) BOOST_PP_TUPLE_ELEM( MyTupleSize(S_), I_, BOOST_PP_TUPLE_ELEM(2, 1, S_ ) )
MyTupleSize( MyTuple ) // this is '2'
GetMyTuple( MyTuple, 1 )// this is 'tuple'

不幸的是,除了知道元组的大小或将其存储在已知大小的元组或列表等中之外,无法确定元组的大小。

答案 1 :(得分:2)

Boost 1.49已经有BOOST_PP_TUPLE_SIZE宏