0

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

4

2 回答 2

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'

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

于 2010-10-04T12:20:25.157 回答
2

Boost 1.49 已经有 BOOST_PP_TUPLE_SIZE 宏

于 2012-04-11T11:53:45.640 回答