我应该如何为部分专业化初始化静态变量?
template <bool A=true, bool B=false>
struct from {
const static std::string value;
};
// no specialization - works
template <bool A, bool B>
const std::string from<A, B>::value = "";
// partial specialization - does not compile -
// Error: template argument list following class template name must list parameters in the order used in template parameter list
// Error: from<A,B>' : too few template arguments
template <bool B>
const std::string from<true, B>::value = "";
// full specialization - works
const std::string from<false, true>::value = "";
为什么部分不起作用?
编辑:我找到了一个基于部分模板专业化的解决方案,用于初始化模板类的静态数据成员
在允许我初始化静态变量之前,我需要重复部分专业化的声明:
template <bool B>
struct from<true, B> {
const static std::string value;
};
再次,问题是为什么?