使用模板参数添加/删除数据成员?

时间:2012-08-24 23:34:47

标签: c++ templates c++11 metaprogramming enable-if

请考虑以下代码:

template<bool AddMembers> class MyClass
{
    public:
        void myFunction();
        template<class = typename std::enable_if<AddMembers>::type> void addedFunction();

    protected:
        double myVariable;
        /* SOMETHING */ addedVariable;
};

在此代码中,模板参数AddMembers允许在类true时向该类添加函数。为此,我们使用std::enable_if

我的问题是:数据成员变量是否可能(可能有技巧)? (以这种方式MyClass<false>将有1个数据成员(myVariable)和MyClass<true>将有2个数据成员(myVariableaddedVariable)?

2 个答案:

答案 0 :(得分:24)

可以使用条件基类:

struct BaseWithVariable    { int addedVariable; };
struct BaseWithoutVariable { };

template <bool AddMembers> class MyClass
    : std::conditional<AddMembers, BaseWithVariable, BaseWithoutVariable>::type
{
    // etc.
};

答案 1 :(得分:20)

首先,您的代码不会为MyClass<false>编译。 enable_if特征对于推导的参数非常有用,而不适用于类模板参数。

其次,这是你如何控制成员:

template <bool> struct Members { };

template <> struct Members<true> { int x; };

template <bool B> struct Foo : Members<B>
{
    double y;
};