如果类型属于给定类型列表,请检查

时间:2014-02-04 09:21:18

标签: c++ templates boost

我有以下问题。在模板中,我想检查类型是否是给定类型之一。

代码说明:

tempalte <typename T>
class foo
{
public:
//BOOST_STATIC_ASSERT(T is one of int, long, long long, double ....);
//boost::is_scalar doesn't fill my requirements since I need 
//to provide my own list of types
};

我知道如何使用模板规范来做到这一点,但这种方式很乏味。

   template <typename T>
    class ValidateType
    {
        static const bool valid = false;
    };

    template <>
    class ValidateType<int>
    {
        static const bool valid = true;
    }

    //repeat for every wanted type

有优雅的方式吗?

2 个答案:

答案 0 :(得分:4)

这有效:

#include <boost/mpl/set.hpp>
#include <boost/mpl/assert.hpp>

typedef boost::mpl::set<int, long, long long, double, ...> allowed_types;
BOOST_MPL_ASSERT((boost::mpl::has_key<allowed_types, int>));  // Compiles
BOOST_MPL_ASSERT((boost::mpl::has_key<allowed_types, char>)); // Causes compile-time error

答案 1 :(得分:1)

您可以使用MPL vector算法contains types 的向量):

typedef vector<int, long, long long, double> types;
BOOST_MPL_ASSERT(( contains<types, T> ));