How should I initialize a static variable for a partial specialization?
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 = "";
Why doesn't the partial work?
EDIT: I found a solution based on Partial template specialization for initialization of static data members of template classes
I need to repeat the declaration for the partial specialization before it allowed me to initialize the static variable:
template <bool B>
struct from<true, B> {
const static std::string value;
};
Again, the question is why?
Partial specialization of members (whether they're functions or static data) are not allowed without partial specialization of enclosing class template itself.
That is, you have to specialize the class template also. So the following should work:
Also, this will not compile (have you tried compiling this?):
You've to write this:
Here's a working full specialization of the template.
You found the correct way of defining the partial.
The reason for your partial not working is that you need to declare the structure type before being able to provide an initialization for its static field. The partial specialization is a template in its own right, and deserves a definition.
The full specialization is actually a type instance of the initial template, and thus doesn't need to be defined separately.