#define macro()< ...>是什么做?

时间:2011-06-02 09:06:23

标签: c++ boost macros c-preprocessor

这条线做什么? 我怀疑它是一个模板或表达。 (做那些divies并命名成员hpp是个坏主意)

# define BOOST_PP_UPDATE_COUNTER() <boost/preprocessor/slot/detail/counter.hpp>

完整档案

# /* **************************************************************************
#  *                                                                          *
#  *     (C) Copyright Paul Mensonides 2005.                                  *
#  *     Distributed under the Boost Software License, Version 1.0. (See      *
#  *     accompanying file LICENSE_1_0.txt or copy at                         *
#  *     http://www.boost.org/LICENSE_1_0.txt)                                *
#  *                                                                          *
#  ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_SLOT_COUNTER_HPP
# define BOOST_PREPROCESSOR_SLOT_COUNTER_HPP
#
# include <boost/preprocessor/slot/detail/def.hpp>
#
# /* BOOST_PP_COUNTER */
#
# define BOOST_PP_COUNTER 0
#
# /* BOOST_PP_UPDATE_COUNTER */
#
# define BOOST_PP_UPDATE_COUNTER() <boost/preprocessor/slot/detail/counter.hpp>
#
# endif

2 个答案:

答案 0 :(得分:6)

Apparently it does some auto-incrementing magic.

这是the documentation

我不知道它是如何运作的。我所知道的是魔法在counter.hpp本身;您发布的定义中包含括号,以便您可以编写模糊的用户友好:

#include BOOST_PP_UPDATE_COUNTER()

调用魔法。

答案 1 :(得分:2)

这只是一个“捷径”,所以你可以做到

#include BOOST_PP_UPDATE_COUNTER()

在您的代码中,而不是知道该功能的实现细节。

请参阅此问题Incremented define的一些使用示例的答案。