BOOST_PP 在空序列的情况下扩展序列
BOOST_PP expand sequence in the empty sequence case
使用 BOOST_PP
我可以使用附加标记将宏扩展为多个逗号分隔值,如下面的代码所示。
但是,它在无参数情况下不起作用。
#define BOOST_PP_VARIADICS
#include <boost/preprocessor/punctuation/comma_if.hpp>
#include <boost/preprocessor/seq/for_each_i.hpp>
#include <boost/preprocessor/variadic/to_seq.hpp>
#define ADD_TOKEN(r, token, i, e) \
BOOST_PP_COMMA_IF(i) token(e)
#define WRAP(...) \
BOOST_PP_SEQ_FOR_EACH_I(ADD_TOKEN, decltype, BOOST_PP_VARIADIC_TO_SEQ(__VA_ARGS__))
#define MACRO(fmt, ...) \
Template<WRAP(__VA_ARGS__)>
MACRO("");
MACRO("", 0);
MACRO("", 0, 1);
用gcc -E main.cpp
编译时的输出是
Template< decltype() >;
Template< decltype(0) >;
Template< decltype(0) , decltype(1) >;
如何在没有 __VA_ARGS__
参数的情况下调用 MACRO
扩展为空?
也就是说,我希望输出为:
Template< >;
Template< decltype(0) >;
Template< decltype(0) , decltype(1) >;
我怎样才能做到这一点?
这个答案使用了 GNU 扩展。你在评论中表示你对此没有意见。
您可以使用 BOOST_PP_TUPLE_SIZE((, ## __VA_ARGS__))
:当且仅当省略可变参数时,它会给您 1
。
模板有点棘手,因为它们可以包含未加括号的逗号,这在宏参数中使用时会造成混淆。以 WRAP
宏仅在 BOOST_PP_IF
完成后展开的方式编写它需要一些工作:
#define MACRO(fmt, ...) \
Template< \
BOOST_PP_IF(BOOST_PP_EQUAL(BOOST_PP_TUPLE_SIZE((,##__VA_ARGS__)), 1), \
BOOST_PP_EXPAND, WRAP) (__VA_ARGS__) \
>
注意:我在空的情况下使用 BOOST_PP_EXPAND
,因为 BOOST_PP_EXPAND(__VA_ARGS__)
将展开为空。
使用 BOOST_PP
我可以使用附加标记将宏扩展为多个逗号分隔值,如下面的代码所示。
但是,它在无参数情况下不起作用。
#define BOOST_PP_VARIADICS
#include <boost/preprocessor/punctuation/comma_if.hpp>
#include <boost/preprocessor/seq/for_each_i.hpp>
#include <boost/preprocessor/variadic/to_seq.hpp>
#define ADD_TOKEN(r, token, i, e) \
BOOST_PP_COMMA_IF(i) token(e)
#define WRAP(...) \
BOOST_PP_SEQ_FOR_EACH_I(ADD_TOKEN, decltype, BOOST_PP_VARIADIC_TO_SEQ(__VA_ARGS__))
#define MACRO(fmt, ...) \
Template<WRAP(__VA_ARGS__)>
MACRO("");
MACRO("", 0);
MACRO("", 0, 1);
用gcc -E main.cpp
编译时的输出是
Template< decltype() >;
Template< decltype(0) >;
Template< decltype(0) , decltype(1) >;
如何在没有 __VA_ARGS__
参数的情况下调用 MACRO
扩展为空?
也就是说,我希望输出为:
Template< >;
Template< decltype(0) >;
Template< decltype(0) , decltype(1) >;
我怎样才能做到这一点?
这个答案使用了 GNU 扩展。你在评论中表示你对此没有意见。
您可以使用 BOOST_PP_TUPLE_SIZE((, ## __VA_ARGS__))
:当且仅当省略可变参数时,它会给您 1
。
模板有点棘手,因为它们可以包含未加括号的逗号,这在宏参数中使用时会造成混淆。以 WRAP
宏仅在 BOOST_PP_IF
完成后展开的方式编写它需要一些工作:
#define MACRO(fmt, ...) \
Template< \
BOOST_PP_IF(BOOST_PP_EQUAL(BOOST_PP_TUPLE_SIZE((,##__VA_ARGS__)), 1), \
BOOST_PP_EXPAND, WRAP) (__VA_ARGS__) \
>
注意:我在空的情况下使用 BOOST_PP_EXPAND
,因为 BOOST_PP_EXPAND(__VA_ARGS__)
将展开为空。