请考虑以下代码:
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个数据成员(myVariable
和addedVariable
)?
答案 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;
};