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

Can class member functions be template functions, or must they be static class functions. Basically can the class and the function be technically instantiated separately on demand?

What are the limitations of using a template function as a member of a template class? Can both be done at the same time at all, or is it either or?

share|improve this question

2 Answers

up vote 8 down vote accepted

You can have template member functions of template classes, like this:

template <typename T>
class Foo {
public:
    template <typename U>
    void bar(const T& t, const U& u);
};

template <typename T>
template <typename U>
void Foo<T>::bar(const T& t, const U& u) {
    // ...
}
share|improve this answer

Class methods can be template. The only limitation is they can't be virtual.

EDIT :

To be more complete, constructor can also be template

class X
{

    template<typename T>
    X( T t )
    {

    }

};

But of course, there should only be one non-template destructor

share|improve this answer
You made a really good point about not being virtual :-) +1 – rubixibuc Oct 8 '11 at 6:21

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.