Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to access values of non-type template parameters in specialized template class?

If I have template class with specialization:

   template <int major, int minor> struct A {
       void f() { cout << major << endl; }
   }

   template <> struct A<4,0> {
       void f() { cout << ??? << endl; }
   }

I know it the above case it is simple to hardcode values 4 and 0 instead of using variables but what I have a larger class that I'm specializing and I would like to be able to access the values.

Is it possible in A<4,0> to access major and minor values (4 and 0)? Or do I have to assign them on template instantiation as constants:

   template <> struct A<4,0> {
       static const int major = 4;
       static const int minor = 0;
       ...
   }
share|improve this question
If you're specializing based on values then it implies that there is something special about those particular values. If you're using them as general values throughout the template and only treating them as special in a few places it may be that you can abstract out the special behaviour into a smaller specialized class template leaving the large template as fully generic and unspecialized. It's a bit hard to tell so can you expand your question to be more 'real'? – Charles Bailey Jul 22 '09 at 6:59
I think the question is real enough. I have existing base class which implements specific behavior based on the protocol version. Previously it had a member that return the protocol version - as that member was no longer available there was a logging method that was including protocol version in output. I could just hardcode the values but I wanted to know if there's better way. The accepted answer provides good way of doing it - I'm actually using traits in similar way in other places - for getting the parameter types but the intent is the same. – stefanB Jul 22 '09 at 7:37

2 Answers

up vote 12 down vote accepted

This kind of problem can be solved by having a separate set of "Traits" structs.

// A default Traits class has no information
template<class T> struct Traits
{
};

// A convenient way to get the Traits of the type of a given value without
// having to explicitly write out the type
template<typename T> Traits<T> GetTraits(const T&)
{
    return Traits<T>();
}

template <int major, int minor> struct A 
{ 
    void f() 
    { 
        cout << major << endl; 
    }   
};

// Specialisation of the traits for any A<int, int>
template<int N1, int N2> struct Traits<A<N1, N2> >
{
    enum { major = N1, minor = N2 };
};

template <> struct A<4,0> 
{       
    void f() 
    { 
        cout << GetTraits(*this).major << endl; 
    }   
};
share|improve this answer
+1 nice, thanks – stefanB Jul 22 '09 at 4:53

Not really an answer to your question, but you could enumerate them, viz:

enum{
 specialisationMajor=4,
 specialisationMinor=0
};

template <> struct A<specialisationMajor,specialisationMinor> {
    static const int major = specialisationMajor;
    static const int minor = specialisationMinor;
    ...
}
share|improve this answer
I'm trying to avoid defining another set of variables ... that was the beauty of having those template parameters, I dont' usually want to access the values ... but nevermind, but thanks – stefanB Jul 22 '09 at 0:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.